-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
375 lines (354 loc) · 16.7 KB
/
index.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
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Medcare | Hospital Website</title>
<!-- Page Icon -->
<link rel="shortcut icon" href="image/heartbeat-solid.svg" type="image/x-icon">
<!-- font-awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"/>
<!-- Custom Css File Link -->
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<!-- Header Section Starts -->
<div class="header">
<a href="#" class="logo"><i class="fas fa-heartbeat"></i> medcare.</a>
<nav class="navbar">
<a href="#home">home</a>
<a href="#services">services</a>
<a href="#about">about</a>
<a href="#doctors">doctors</a>
<a href="#book">book</a>
<a href="#review">review</a>
<a href="#blogs">blogs</a>
</nav>
<div id="menu-btn" class="fas fa-bars"></div>
</div>
<!-- Header Section End -->
<!-- Home Section starts -->
<section class="home" id="home">
<div class="image">
<img src="./image/home-img.svg" alt="home-img.svg">
</div>
<div class="content">
<h3>stay safe, stay healthy</h3>
<p>Lorem Ipsum Dolor Sit Amet Consectetur Adipisicing Elit. Rem Sed Autem Vero? Magnam, Est Laboriosam!</p>
<a href="#" class="btn">contact us <span class="fas fa-chevron-right"></span> </a>
</div>
</section>
<!-- Home Section End -->
<!-- icons section starts -->
<section class="icons-container">
<div class="icons">
<i class="fas fa-user-md"></i>
<h3>140+</h3>
<p>doctors at work</p>
</div>
<div class="icons">
<i class="fas fa-users"></i>
<h3>1040+</h3>
<p>satisfied patients</p>
</div>
<div class="icons">
<i class="fas fa-procedures"></i>
<h3>500+</h3>
<p>bed facility</p>
</div>
<div class="icons">
<i class="fas fa-hospital"></i>
<h3>80+</h3>
<p>available hospitals</p>
</div>
</section>
<!-- icons section End -->
<!-- Service section Starts -->
<section class="services" id="services">
<h1 class="heading">our <span>services</span></h1>
<div class="box-container">
<div class="box">
<i class="fas fa-notes-medical"></i>
<h3>free checkups</h3>
<p>Lorem Ipsum Dolor Sit Amet Consectetur, Adipisicing Elit. Ad, Omnis.</p>
<a href="#" class="btn">learn more <span class="fas fa-chevron-right"></span> </a>
</div>
<div class="box">
<i class="fas fa-ambulance"></i>
<h3>24/7 ambulance</h3>
<p>Lorem Ipsum Dolor Sit Amet Consectetur, Adipisicing Elit. Ad, Omnis.</p>
<a href="#" class="btn">learn more <span class="fas fa-chevron-right"></span> </a>
</div>
<div class="box">
<i class="fas fa-user-md"></i>
<h3>expert doctors</h3>
<p>Lorem Ipsum Dolor Sit Amet Consectetur, Adipisicing Elit. Ad, Omnis.</p>
<a href="#" class="btn">learn more <span class="fas fa-chevron-right"></span> </a>
</div>
<div class="box">
<i class="fas fa-pills"></i>
<h3>medicines</h3>
<p>Lorem Ipsum Dolor Sit Amet Consectetur, Adipisicing Elit. Ad, Omnis.</p>
<a href="#" class="btn">learn more <span class="fas fa-chevron-right"></span> </a>
</div>
<div class="box">
<i class="fas fa-procedures"></i>
<h3>bed facility</h3>
<p>Lorem Ipsum Dolor Sit Amet Consectetur, Adipisicing Elit. Ad, Omnis.</p>
<a href="#" class="btn">learn more <span class="fas fa-chevron-right"></span> </a>
</div>
<div class="box">
<i class="fas fa-heartbeat"></i>
<h3>total care</h3>
<p>Lorem Ipsum Dolor Sit Amet Consectetur, Adipisicing Elit. Ad, Omnis.</p>
<a href="#" class="btn">learn more <span class="fas fa-chevron-right"></span> </a>
</div>
</div>
</section>
<!-- Service section End -->
<!-- About section Starts -->
<section class="about" id="about">
<h1 class="heading"><span>about</span> us</h1>
<div class="row">
<div class="image">
<img src="./image/about-img.svg" alt="">
</div>
<div class="content">
<h3>we take care of your healthy life</h3>
<p>Lorem Ipsum Dolor Sit Amet Consectetur, Adipisicing Elit. Iure Ducimus, Quod Ex Cupiditate Ullam In Assumenda Maiores Et Culpa Odit Tempora Ipsam Qui, Quisquam Quis Facere Iste Fuga, Minus Nesciunt.</p>
<p>Lorem Ipsum Dolor, Sit Amet Consectetur Adipisicing Elit. Natus Vero Ipsam Laborum Porro Voluptates Voluptatibus A Nihil Temporibus Deserunt Vel?</p>
<a href="#" class="btn">learn more <span class="fas fa-chevron-right"></span> </a>
</div>
</div>
</section>
<!-- About section End -->
<!-- Doctors section Starts -->
<section class="doctors" id="doctors">
<h1 class="heading">our <span>doctors</span></h1>
<div class="box-container">
<div class="box">
<img src="./image/doc-1.jpg" alt="">
<h3>Dr. john deo</h3>
<span>expert doctor</span>
<div class="share">
<a href="#" class="fab fa-facebook-f"></a>
<a href="#" class="fab fa-twitter"></a>
<a href="#" class="fab fa-linkedin"></a>
<a href="#" class="fab fa-instagram"></a>
</div>
</div>
<div class="box">
<img src="./image/doc-2.jpg" alt="">
<h3>Dr. Pullen</h3>
<span>expert doctor</span>
<div class="share">
<a href="#" class="fab fa-facebook-f"></a>
<a href="#" class="fab fa-twitter"></a>
<a href="#" class="fab fa-linkedin"></a>
<a href="#" class="fab fa-instagram"></a>
</div>
</div>
<div class="box">
<img src="./image/doc-3.jpg" alt="">
<h3> Dr. Swallow</h3>
<span>expert doctor</span>
<div class="share">
<a href="#" class="fab fa-facebook-f"></a>
<a href="#" class="fab fa-twitter"></a>
<a href="#" class="fab fa-linkedin"></a>
<a href="#" class="fab fa-instagram"></a>
</div>
</div>
<div class="box">
<img src="./image/doc-4.jpg" alt="">
<h3>Dr. Mangle</h3>
<span>expert doctor</span>
<div class="share">
<a href="#" class="fab fa-facebook-f"></a>
<a href="#" class="fab fa-twitter"></a>
<a href="#" class="fab fa-linkedin"></a>
<a href="#" class="fab fa-instagram"></a>
</div>
</div>
<div class="box">
<img src="./image/doc-5.jpg" alt="">
<h3>Dr. Fillmore</h3>
<span>expert doctor</span>
<div class="share">
<a href="#" class="fab fa-facebook-f"></a>
<a href="#" class="fab fa-twitter"></a>
<a href="#" class="fab fa-linkedin"></a>
<a href="#" class="fab fa-instagram"></a>
</div>
</div>
<div class="box">
<img src="./image/doc-6.jpg" alt="">
<h3>Dr. Watamaniuk</h3>
<span>expert doctor</span>
<div class="share">
<a href="#" class="fab fa-facebook-f"></a>
<a href="#" class="fab fa-twitter"></a>
<a href="#" class="fab fa-linkedin"></a>
<a href="#" class="fab fa-instagram"></a>
</div>
</div>
</div>
</section>
<!-- Doctors section Ends -->
<!-- Book section Starts -->
<section class="book" id="book">
<h1 class="heading"><span>book</span> now</h1>
<div class="row">
<div class="image">
<img src="./image/book-img.svg" alt="">
</div>
<form action="">
<h3>book appointment</h3>
<input type="text" placeholder="your name" class="box">
<input type="number" placeholder="your number" class="box">
<input type="email" placeholder="your email" class="box">
<input type="date" class="box">
<input type="submit" value="book now" class="btn">
</form>
</div>
</section>
<!-- Book section End -->
<!-- Review section Starts -->
<section class="review" id="review">
<h1 class="heading">client's <span>review</span></h1>
<div class="box-container">
<div class="box">
<img src="./image/pic-1.png" alt="">
<h3>Jazmin Archer</h3>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<p class="text">Lorem Ipsum Dolor Sit Amet Consectetur Adipisicing Elit. Laboriosam Sapiente Nihil Aperiam? Repellat Sequi Nisi Aliquid Perspiciatis Libero Nobis Rem Numquam Nesciunt Alias Sapiente Minus Voluptatem, Reiciendis Consequuntur Optio Dolorem!</p>
</div>
<div class="box">
<img src="./image/pic-2.png" alt="">
<h3>Jazmin Archer</h3>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<p class="text">Lorem Ipsum Dolor Sit Amet Consectetur Adipisicing Elit. Laboriosam Sapiente Nihil Aperiam? Repellat Sequi Nisi Aliquid Perspiciatis Libero Nobis Rem Numquam Nesciunt Alias Sapiente Minus Voluptatem, Reiciendis Consequuntur Optio Dolorem!</p>
</div>
<div class="box">
<img src="./image/pic-3.png" alt="">
<h3>Abdiel Galloway</h3>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<p class="text">Lorem Ipsum Dolor Sit Amet Consectetur Adipisicing Elit. Laboriosam Sapiente Nihil Aperiam? Repellat Sequi Nisi Aliquid Perspiciatis Libero Nobis Rem Numquam Nesciunt Alias Sapiente Minus Voluptatem, Reiciendis Consequuntur Optio Dolorem!</p>
</div>
</div>
</section>
<!-- Review section End -->
<!-- Blogs section Starts -->
<section class="blogs" id="blogs">
<h1 class="heading">our <span>blogs</span></h1>
<div class="box-container">
<div class="box">
<div class="image">
<img src="./image/blog-1.jpg" alt="">
</div>
<div class="content">
<div class="icon">
<a href="#"><i class="fas fa-calendar"></i>1st may, 2021</a>
<a href="#"><i class="fas fa-user"></i> by admin</a>
</div>
<h3>blog title goes here</h3>
<p>Lorem Ipsum, Dolor Sit Amet Consectetur Adipisicing Elit. Provident, Eius</p>
<a href="#" class="btn">learn more <span class="fas fa-chevron-right"></span> </a>
</div>
</div>
<div class="box">
<div class="image">
<img src="./image/blog-2.jpg" alt="">
</div>
<div class="content">
<div class="icon">
<a href="#"><i class="fas fa-calendar"></i> 1st may, 2021</a>
<a href="#"><i class="fas fa-user"></i> by admin</a>
</div>
<h3>blog title goes here</h3>
<p>Lorem Ipsum, Dolor Sit Amet Consectetur Adipisicing Elit. Provident, Eius</p>
<a href="#" class="btn">learn more <span class="fas fa-chevron-right"></span> </a>
</div>
</div>
<div class="box">
<div class="image">
<img src="./image/blog-3.jpg" alt="">
</div>
<div class="content">
<div class="icon">
<a href="#"><i class="fas fa-calendar"></i> 1st may, 2021</a>
<a href="#"><i class="fas fa-user"></i> by admin</a>
</div>
<h3>blog title goes here</h3>
<p>Lorem Ipsum, Dolor Sit Amet Consectetur Adipisicing Elit. Provident, Eius</p>
<a href="#" class="btn">learn more <span class="fas fa-chevron-right"></span> </a>
</div>
</div>
</div>
</section>
<!-- Blogs section End -->
<!-- Footer section Starts -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3>quick links</h3>
<a href="#"> <i class="fas fa-chevron-right"></i> home</a>
<a href="#"> <i class="fas fa-chevron-right"></i> services</a>
<a href="#"> <i class="fas fa-chevron-right"></i> about</a>
<a href="#"> <i class="fas fa-chevron-right"></i> doctors</a>
<a href="#"> <i class="fas fa-chevron-right"></i> book</a>
<a href="#"> <i class="fas fa-chevron-right"></i> review</a>
<a href="#"> <i class="fas fa-chevron-right"></i> blogs</a>
</div>
<div class="box">
<h3>our services</h3>
<a href="#"> <i class="fas fa-chevron-right"></i> dental care</a>
<a href="#"> <i class="fas fa-chevron-right"></i> message therapy</a>
<a href="#"> <i class="fas fa-chevron-right"></i> cardioloty</a>
<a href="#"> <i class="fas fa-chevron-right"></i> diagnosis</a>
<a href="#"> <i class="fas fa-chevron-right"></i> ambulance service</a>
</div>
<div class="box">
<h3>contact info</h3>
<a href="#"> <i class="fas fa-phone"></i> +123-456-7859</a>
<a href="#"> <i class="fas fa-phone"></i> +356-481-0286</a>
<a href="#"> <i class="fas fa-envelope"></i> medcare.info.com</a>
<a href="#"> <i class="fas fa-envelope"></i> medcare.info.@gmail.com</a>
<a href="#"> <i class="fas fa-map-marker-alt"></i> dhaka, Bangladesh - 1000</a>
</div>
<div class="box">
<h3>follow us</h3>
<a href="#"> <i class="fab fa-facebook-f"></i> facebook</a>
<a href="#"> <i class="fab fa-twitter"></i> twitter</a>
<a href="#"> <i class="fab fa-linkedin"></i> linkedin</a>
<a href="#"> <i class="fab fa-instagram"></i> instagram</a>
<a href="#"> <i class="fab fa-youtube"></i> youtube</a>
<a href="#"> <i class="fab fa-pinterest"></i> pinterest</a>
</div>
</div>
<div class="credit">created by <span>zaki chowdhury</span> | all right reserved</div>
</section>
<!-- Footer section End -->
<!-- custom js file link -->
<script src="js/script.js"></script>
</body>
</html>