xxxxxxxxxx
1
<!-- Section: Contact v.1 -->
2
<section class="my-5">
3
4
<!-- Section heading -->
5
<h2 class="h1-responsive font-weight-bold text-center my-5">Contact us</h2>
6
<!-- Section description -->
7
<p class="text-center w-responsive mx-auto pb-5">Lorem ipsum dolor sit amet, consectetur adipisicing elit.
8
Fugit, error amet numquam iure provident voluptate esse quasi, veritatis totam voluptas nostrum quisquam
9
eum porro a pariatur veniam.</p>
10
11
<!-- Grid row -->
12
<div class="row">
13
14
<!-- Grid column -->
15
<div class="col-lg-5 mb-lg-0 mb-4">
16
17
<!-- Form with header -->
18
<div class="card">
19
<div class="card-body">
20
<!-- Header -->
21
<div class="form-header blue accent-1">
22
<h3 class="mt-2"><i class="fas fa-envelope prefix"></i> Write to us:</h3>
23
</div>
24
<p class="dark-grey-text">We'll write rarely, but only the best content.</p>
25
<!-- Body -->
26
<div class="md-form md-bg grey-text">
27
<i class="fas fa-user prefix"></i>
28
<input type="text" id="form-name" class="form-control">
29
<label for="form-name">Your name</label>
30
</div>
31
<div class="md-form md-bg grey-text">
32
<i class="fas fa-envelope prefix"></i>
33
<input type="text" id="form-email" class="form-control">
34
<label for="form-email">Your email</label>
35
</div>
36
<div class="md-form md-bg grey-text">
37
<i class="fas fa-tag prefix"></i>
38
<input type="text" id="form-Subject" class="form-control">
39
<label for="form-Subject">Subject</label>
40
</div>
41
<div class="md-form md-bg grey-text">
42
<i class="fas fa-pencil-alt prefix"></i>
43
<textarea id="form-text" class="form-control md-textarea" rows="3"></textarea>
44
<label for="form-text">Send message</label>
45
</div>
46
<div class="text-center">
47
<button class="btn btn-light-blue">Submit</button>
48
</div>
49
</div>
50
</div>
51
<!-- Form with header -->
52
53
</div>
54
<!-- Grid column -->
55
56
<!-- Grid column -->
57
<div class="col-lg-7">
58
59
<!--Google map-->
60
<div id="map-container-section" class="z-depth-1-half map-container-section mb-4" style="height: 400px">
61
<iframe src="https://maps.google.com/maps?q=Manhatan&t=&z=15&ie=UTF8&iwloc=&output=embed" frameborder="0"
62
style="border:0" allowfullscreen></iframe>
63
</div>
64
<!-- Buttons-->
65
<div class="row text-center">
66
<div class="col-md-4">
67
<a class="btn-floating blue accent-1">
68
<i class="fas fa-map-marker-alt"></i>
69
</a>
70
<p>New York, 94126</p>
71
<p class="mb-md-0">United States</p>
72
</div>
73
<div class="col-md-4">
74
<a class="btn-floating blue accent-1">
75
<i class="fas fa-phone"></i>
76
</a>
77
<p>+ 01 234 567 89</p>
78
<p class="mb-md-0">Mon - Fri, 8:00-22:00</p>
79
</div>
80
<div class="col-md-4">
81
<a class="btn-floating blue accent-1">
82
<i class="fas fa-envelope"></i>
83
</a>
84
<p>info@gmail.com</p>
85
<p class="mb-0">sale@gmail.com</p>
86
</div>
87
</div>
88
89
</div>
90
<!-- Grid column -->
91
92
</div>
93
<!-- Grid row -->
94
95
</section>
96
<!-- Section: Contact v.1 -->
97
xxxxxxxxxx
1
.map-container-section {
2
overflow:hidden;
3
padding-bottom:56.25%;
4
position:relative;
5
height:0;
6
}
7
.map-container-section iframe {
8
left:0;
9
top:0;
10
height:100%;
11
width:100%;
12
position:absolute;
13
}
14
input{
15
background-color: transparent !important;
16
}
17
textarea {
18
background-color: transparent !important;
19
}
1
1
Console errors: 0