-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathlocation.php
136 lines (117 loc) · 4.52 KB
/
location.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Nimedco Pharmacy</title>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="css/mdb.min.css" rel="stylesheet">
<!-- Your custom styles (optional) -->
<link href="css/style.css" rel="stylesheet">
<link href="css/location.css" rel="stylesheet">
</head>
<body>
<!------------------------------------Location Start-------------------------------->
<!-- Section: Contact v.1 -->
<section class="my-5">
<!-- Section heading -->
<h2 class="h1-responsive font-weight-bold text-center my-5">Contact us</h2>
<!-- Section description -->
<p class="text-center w-responsive mx-auto pb-5">Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Fugit, error amet numquam iure provident voluptate esse quasi, veritatis totam voluptas nostrum quisquam
eum porro a pariatur veniam.</p>
<!-- Grid row -->
<div class="row">
<!-- Grid column -->
<div class="col-lg-5 mb-lg-0 mb-4">
<!-- Form with header -->
<div class="card">
<div class="card-body">
<!-- Header -->
<div class="form-header blue accent-1">
<h3 class="mt-2"><i class="fas fa-envelope"></i> Write to us:</h3>
</div>
<p class="dark-grey-text">We'll write rarely, but only the best content.</p>
<!-- Body -->
<div class="md-form">
<i class="fas fa-user prefix grey-text"></i>
<input type="text" id="form-name" class="form-control">
<label for="form-name">Your name</label>
</div>
<div class="md-form">
<i class="fas fa-envelope prefix grey-text"></i>
<input type="text" id="form-email" class="form-control">
<label for="form-email">Your email</label>
</div>
<div class="md-form">
<i class="fas fa-tag prefix grey-text"></i>
<input type="text" id="form-Subject" class="form-control">
<label for="form-Subject">Subject</label>
</div>
<div class="md-form">
<i class="fas fa-pencil-alt prefix grey-text"></i>
<textarea id="form-text" class="form-control md-textarea" rows="3"></textarea>
<label for="form-text">Send message</label>
</div>
<div class="text-center">
<button class="btn btn-light-blue">Submit</button>
</div>
</div>
</div>
<!-- Form with header -->
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-lg-7">
<!--Google map-->
<div id="map-container-section" class="z-depth-1-half map-container-section mb-4" style="height: 400px">
<iframe src="https://maps.google.com/maps?q=Manhatan&t=&z=15&ie=UTF8&iwloc=&output=embed" frameborder="0"
style="border:0" allowfullscreen></iframe>
</div>
<!-- Buttons-->
<div class="row text-center">
<div class="col-md-4">
<a class="btn-floating blue accent-1">
<i class="fas fa-map-marker-alt"></i>
</a>
<p>New York, 94126</p>
<p class="mb-md-0">United States</p>
</div>
<div class="col-md-4">
<a class="btn-floating blue accent-1">
<i class="fas fa-phone"></i>
</a>
<p>+ 01 234 567 89</p>
<p class="mb-md-0">Mon - Fri, 8:00-22:00</p>
</div>
<div class="col-md-4">
<a class="btn-floating blue accent-1">
<i class="fas fa-envelope"></i>
</a>
<p>info@gmail.com</p>
<p class="mb-0">sale@gmail.com</p>
</div>
</div>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</section>
<!-- Section: Contact v.1 -->
<!-------------------------------Location End-------------------------------------------->
<!-- SCRIPTS -->
<!-- JQuery -->
<script type="text/javascript" src="js/jquery-3.4.1.min.js"></script>
<!-- Bootstrap tooltips -->
<script type="text/javascript" src="js/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<!-- MDB core JavaScript -->
<script type="text/javascript" src="js/mdb.min.js"></script>
</body>
</html>