-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLocation.html
86 lines (74 loc) · 2.83 KB
/
Location.html
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
<!DOCTYPE html>
<html>
<head>
<title>Find us</title>
<link rel="shortcut icon" href="logo.png" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<img class="logo" src="logo.png">
<h2> <br> Physique Clinic</h2>
</header>
<nav>
<a href="home.html">Home</a>
<a href="Location.html" style="background-color: #82a2ca; color: rgb(56, 73, 109); font-weight: 600;">Location</a>
<a id="service">Services</a>
<a href="Gallery.html">Gallery</a>
<a href="bookings.html">Appointments</a>
<a id="contact">Contact Us</a>
</nav>
<div class="BlankSpace"></div>
<!--drop down list-->
<div class="dropdown">
<!-- drop down contents for services-->
<div class="dropdown-content" id="myDropdown">
<h2>What conditions do we handle?</h2>
<ul>
<li>Neck pain</li>
<li>Knee pain</li>
<li>Shoulder pain</li>
<li>Joint pain</li>
<li>Groin/Pelvic pain</li>
<li>Sports injuries</li>
<li>Acute/Chronic injuries</li>
<li>Sprains and strains</li>
<li>Sciatica</li>
<li>Post-operative rehabilitation</li>
<li>Chronic disease management</li>
<li>Falls prevention</li>
<li>Neurological rehabilitation for stroke, Parkinson's disease, spinal cord injuries</li>
<li>Cardio-pulmonary rehabilitation and management</li>
</ul>
</div>
</div>
<!--contact info pop up modal-->
<div id="myModal" class="modal">
<div class="modal-content">
<span id="close">×</span><br>
<h2>Contact Us</h2>
<p>01023456789</p>
<p>physiquelclinic@gmail.com</p>
<p>49 Fareed Semeika, Al Matar, El Nozha, Cairo Governorate</p>
</div>
</div>
<br>
<!--The div element for the map -->
<div id="map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3451.305357191956!2d31.343641100000003!3d30.1140746!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14583fd873751fb1%3A0x42ff31cf0ea0967b!2sPhysique%20clinic!5e0!3m2!1sen!2seg!4v1621505901066!5m2!1sen!2seg"
width="100%" height="450" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
<br>
<div class="BlankSpace"></div>
<br>
<footer>
<h2>Get In Touch</h2>
<p>Say Goodbye To The Pain<br></p>
<img src="instagram.png" class="insta" width="20" height="20"><a href="https://www.instagram.com/physique.clinic/?utm_medium=copy_link"> Physique Therapy</a>
<br>
<img src="phone-call.png" class="phone" width="20" height="20"><p class="phone_no"> 01023456789</p>
</footer>
<!--Add the js scripts-->
<script src="event.js" type="text/javascript"></script>
</body>
</html>