HTML
xxxxxxxxxx
1
<div class="container-fluid mt-3 mb-5">
2
3
<!-- Section: Block Content -->
4
<section class="mb-4">
5
6
<style>
7
.map-container {
8
overflow: hidden;
9
position: relative;
10
height: 0;
11
}
12
13
.map-container iframe {
14
left: 0;
15
top: 0;
16
height: 100%;
17
width: 100%;
18
position: absolute;
19
}
20
</style>
21
22
<div class="card">
23
24
<div class="row">
25
<div class="col-md-6">
26
27
<!-- Google Maps -->
28
<div id="map-within-card-2" class="map-container rounded-left" style="height: 400px">
29
<iframe src="https://maps.google.com/maps?q=Seattle&t=&z=13&ie=UTF8&iwloc=&output=embed" frameborder="0"
30
style="border:0" allowfullscreen></iframe>
31
</div>
32
<!-- Google Maps -->
33
34
</div>
35
36
<div class="col-10 col-md-4 mx-auto align-self-center py-4">
37
38
<h6 class="font-weight-bold grey-text text-uppercase small">Head Office</h6>
39
<h5 class="font-weight-normal mb-4">Seattle, WA</h5>
40
<p class="text-muted font-weight-light">2651 Main Street, Suit 124<br>Seattle, WA, 98101</p>
41
<p class="text-muted font-weight-light mb-0">Phone: +1 987 123 6548<br>Email: hello@thetheme.io</p>
42
43
</div>
44
</div>
45
46
</div>
47
48
</section>
49
<!-- Section: Block Content -->
50
51
</div>
CSS
1
1
JS
1
1
Console errors: 0