-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
268 lines (235 loc) · 11.5 KB
/
Copy pathindex.html
File metadata and controls
268 lines (235 loc) · 11.5 KB
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
<meta name="viewport" content="width=device-width,initial-scal=1">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Katibeh&family=Mina&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/f8e8c480d8.js" crossorigin="anonymous"></script>
</head>
<body>
<section id="background">
<img class="logo" src="img/logo.png">
<div class="backgroundText">
<h1>MSM HealthCare</h1>
<p>Multispeciality Hospital India || Health for all, All for Health</p>
<div class="btn">
<a href="#Appointment"><span></span>For Appointment</a>
<a href="#Reach"><span></span>Find Out</a>
</div>
</div>
</section>
<div id="sideNav">
<nav>
<ul>
<li><a href="#">HOME</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">SERIVES</a></li>
<li><a href="#">TESTIMONIALS</a></li>
<li><a href="#">MEET US</a></li>
</ul>
</nav>
</div>
<div id="menuBtn">
<img id="menu" src="img/menu.png">
</div>
<!--Features-->
<section id="features">
<div class="title" id="Reach">
<h1>Reach out to our <span class="changeColor">Doctors</span></h1>
</div>
<div class="row">
<div class="column">
<div class="container">
<img src="img/Cardiologist.jpg" alt="Avatar" class="image">
<div class="centered">Cardiologist</div>
<div class="overlay">
<div class="text"><pre>
Name:Dr A G K Gokhale
Experience: 32 years
Language: English, हिंदी, తెలుగు
</pre></div>
</div>
</div>
</div>
<div class="column">
<div class="container">
<img src="img/neurologist.jpg" alt="Avatar" class="image">
<div class="centered">Neurologist</div>
<div class="overlay">
<div class="text"><pre>
Name:Dr A G K Gokhale
Experience: 32 years
Language: English, हिंदी, తెలుగు
</pre></div>
</div>
</div>
</div>
<div class="column">
<div class="container">
<img src="img/ortho.jpg" alt="Avatar" class="image">
<div class="centered">Orthopedist</div>
<div class="overlay">
<div class="text"><pre>
Name:Dr A G K Gokhale
Experience: 32 years
Language: English, हिंदी, తెలుగు
</pre></div>
</div>
</div>
</div>
</div>
<!--Slideshow-->
<div class="title">
<h1>Latest <span class="changeColor">News</span></h1>
</div>
<div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">1 / 3</div>
<a href="https://www.news-medical.net/news/20220429/Study-reveals-new-approach-for-engineering-stable-articular-cartilage.aspx"><img src="img/poster1.jpg" style="width:75%"></a>
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 3</div>
<a href="https://www.news-medical.net/news/20220429/Uncovering-a-new-molecule-that-shows-potential-as-antidote-for-carbon-monoxide-poisoning.aspx"><img src="img/poster2.jpg" style="width:75%"></a>
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 3</div>
<a href="https://www.news-medical.net/news/20220501/Antibody-cocktail-shows-synergetic-effects-against-SARS-CoV-2-Omicron-in-vitro-and-in-vivo.aspx"><img src="img/poster3.jpg" style="width:75%"></a>
</div>
</div>
<br>
<div style="text-align:center">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>
<script>
let slideIndex = 0;
showSlides();
function showSlides() {
let i;
let slides = document.getElementsByClassName("mySlides");
let dots = document.getElementsByClassName("dot");
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
slideIndex++;
if (slideIndex > slides.length) {slideIndex = 1}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
setTimeout(showSlides, 2000); // Change image every 2 seconds
}
</script>
<!--Appointment-->
<div class="title" id="Appointment">
<h1>Book online <span class="changeColor">Appointment</span></h1>
</div>
<div>
<div class="landing-page"><div class="form-appointment"><div class="wpcf7" id="wpcf7-f560-p590-o1"><form action="#" method="post" class="wpcf7-form" novalidate="novalidate" _lpchecked="1">
<div style="display: none;">
<input type="hidden" name="_wpcf7" value="560">
<input type="hidden" name="_wpcf7_version" value="3.5">
<input type="hidden" name="_wpcf7_locale" value="">
<input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f560-p590-o1">
<input type="hidden" name="_wpnonce" value="dbb28877d5">
</div>
<div class="group">
<div style="width: 48%; float: left;">
<span class="wpcf7-form-control-wrap text-680"><input type="text" name="text-680" value="" size="45" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" placeholder="Name"></span><br>
<span class="wpcf7-form-control-wrap email-680"><input type="email" name="email-680" value="" size="45" class="wpcf7-form-control wpcf7-text wpcf7-email wpcf7-validates-as-required wpcf7-validates-as-email" aria-required="true" placeholder="Email"></span><br>
<span class="wpcf7-form-control-wrap tel-630"><input type="tel" name="tel-630" value="" size="45" class="wpcf7-form-control wpcf7-text wpcf7-tel wpcf7-validates-as-required wpcf7-validates-as-tel" aria-required="true" placeholder="Phone"></span><br>
<span class="wpcf7-form-control-wrap textarea-398"><textarea name="textarea-398" cols="40" rows="10" class="wpcf7-form-control wpcf7-textarea" placeholder="describe a disease,symptoms,..."></textarea></span></div>
<div style="width: 48%; float: right;">
<h4>Gender</h4>
<p><span class="wpcf7-form-control-wrap radio-98"><span class="wpcf7-form-control wpcf7-radio"><span class="wpcf7-list-item"><label><input type="radio" name="radio-98" value="Phone"> <span class="wpcf7-list-item-label">Male</span></label></span><span class="wpcf7-list-item"><label><input type="radio" name="radio-98" value="Email"> <span class="wpcf7-list-item-label">Female</span></label></span></span></span></p>
<h4>Days of the week you are available for appointment:</h4>
<p><span class="wpcf7-form-control-wrap checkbox-465"><span class="wpcf7-form-control wpcf7-checkbox"><span class="wpcf7-list-item"><label><input type="checkbox" name="checkbox-465[]" value="Monday"> <span class="wpcf7-list-item-label">Monday</span></label></span><span class="wpcf7-list-item"><label><input type="checkbox" name="checkbox-465[]" value="Tuesday"> <span class="wpcf7-list-item-label">Tuesday</span></label></span><span class="wpcf7-list-item"><label><input type="checkbox" name="checkbox-465[]" value="Wednesday"> <span class="wpcf7-list-item-label">Wednesday</span></label></span><span class="wpcf7-list-item"><label><input type="checkbox" name="checkbox-465[]" value="Thursday"> <span class="wpcf7-list-item-label">Thursday</span></label></span><span class="wpcf7-list-item"><label><input type="checkbox" name="checkbox-465[]" value="Friday"> <span class="wpcf7-list-item-label">Friday</span></label></span></span></span></p>
<h4>Best time of day for your appointment:</h4>
<p><span class="wpcf7-form-control-wrap checkbox-246"><span class="wpcf7-form-control wpcf7-checkbox"><span class="wpcf7-list-item"><label><input type="checkbox" name="checkbox-246[]" value="Morning"> <span class="wpcf7-list-item-label">Morning</span></label></span><span class="wpcf7-list-item"><label><input type="checkbox" name="checkbox-246[]" value="Afternoon"> <span class="wpcf7-list-item-label">Afternoon</span></label></span></span></span></p></div>
</div>
<div style="text-align: center; padding-top: 2em; border-top: 1px solid rgb(153, 202, 129); margin-top: 1em;"><input type="submit" value="Request My Appointment" class="wpcf7-form-control wpcf7-submit"><img class="ajax-loader" src="#" alt="Sending ..." style="visibility: hidden;"></div>
<div class="wpcf7-response-output wpcf7-display-none"></div></form></div></div></div>
</div>
<!-- FOOTER START -->
<div class="container"></div>
<footer>
<!-- Footer main -->
<section class="ft-main">
<div class="ft-main-item">
<h2 class="ft-title">CENTRES OF EXCELLENCE</h2>
<ul>
<li><a href="#">Cardiology</a></li>
<li><a href="#">Neurology</a></li>
<li><a href="#">Orthopaedics</a></li>
<li><a href="#">Robotic Surgery</a></li>
</ul>
</div>
<div class="ft-main-item">
<h2 class="ft-title">QUICK LINKS</h2>
<ul>
<li><a href="#">Hospital Directory</a></li>
<li><a href="#">Photo Gallery</a></li>
<li><a href="#">Staff Mail</a></li>
<li><a href="#">Camps</a></li>
</ul>
</div>
<div class="ft-main-item">
<h2 class="ft-title">Facilities</h2>
<ul>
<li><a href="#">AmbulanceServices</a></li>
<li><a href="#">Intensive Care Unit</a></li>
<li><a href="#">Blood Bank</a></li>
</ul>
</div>
<div class="ft-main-item">
<h2 class="ft-title">Stay Updated</h2>
<p>Get updates before others do!</p>
<form>
<input type="email" name="email" placeholder="Enter email address">
<input type="submit" value="Subscribe">
</form>
</div>
</section>
<!-- Footer social -->
<section class="ft-social">
<ul class="ft-social-list">
<li><a href="#"><i class="fab fa-facebook"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
<li><a href="#"><i class="fab fa-github"></i></a></li>
<li><a href="#"><i class="fab fa-linkedin"></i></a></li>
<li><a href="#"><i class="fab fa-youtube"></i></a></li>
</ul>
</section>
<!-- Footer legal -->
<section class="ft-legal">
<ul class="ft-legal-list">
<li><a href="#">Terms & Conditions</a></li>
<li><a href="#">Privacy Policy</a></li>
<li>© 2022 by Mahsook, MSM</li>
</ul>
</section>
</footer>
<script>
var menuBtn=document.getElementById("menuBtn")
var sideNav=document.getElementById("sideNav")
var menu=document.getElementById("menu")
sideNav.style.right="-250px";
menuBtn.onclick=function(){
if(sideNav.style.right=="-250px"){
sideNav.style.right="0";
menu.src="img/close.png"
}
else{
sideNav.style.right="-250px"
menu.src="img/menu.png"
}
}
</script>
</body>
</html>