-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
706 lines (636 loc) · 30 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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
<!--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========================-->
<title>Medical Website HTML</title>
<!--==Fav-icon=====================-->
<link rel="shortcut icon" href="images/fav-icon.png">
<!--==CSS==========================-->
<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=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<!--==Font-Awesome-for-icons=====-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
<!-- Link Swiper's CSS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css"
/>
</head>
<body>
<!--==Hero-Section========================-->
<section id="hero">
<!--==navigation====================-->
<nav class="navigation">
<!--**menu-btn*****-->
<input type="checkbox" class="menu-btn" id="menu-btn">
<label for="menu-btn" class="menu-icon">
<span class="nav-icon"></span>
</label>
<!--**logo*********-->
<a href="index.html" class="logo"><span>We</span>Care</a>
<!--**menu*********-->
<ul class="menu">
<li><a href="#our-team">Find A Doctor</a></li>
<li><a href="#our-services">Our Services</a></li>
<li><a href="#testimonials">Testimonial's</a></li>
</ul>
<!--**contact*******-->
<a href="#" class="nav-appointment-btn">Appointment</a>
</nav><!--nav-end-->
<!--==Content============================-->
<div class="hero-content">
<!--**text****************-->
<div class="hero-text">
<h1>Feel Better About Finding HealthCare</h1>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Id, vitae ex! Fuga similique repudiandae molestiae libero.</p>
<!--btns-->
<div class="hero-text-btns">
<a href="#"><i class="fa-solid fa-magnifying-glass"></i> Find Doctor's</a>
<a href="#"><i class="fa-solid fa-check"></i> Book Appointment</a>
</div>
</div>
<!--**img*****************-->
<div class="hero-img">
<img alt="" src="images/main-bg.png">
</div>
</div>
</section><!--hero-end-->
<!--==appointment-search===============================-->
<div class="appointment-search-container">
<h3>Find Best HealthCare</h3>
<form class="appointment-search">
<!--**doctor-search-box*******-->
<div class="appo-search-box">
<i class="fa-solid fa-magnifying-glass"></i>
<input type="text" placeholder="Search Doctor Here or For Advice">
</div>
<!--**set-your-location*******-->
<div class="appo-search-box">
<i class="fa-solid fa-location-dot"></i>
<input type="text" placeholder="Set Your Location">
</div>
<!--**btn*********************-->
<button>
<i class="fa-solid fa-magnifying-glass"></i>
</button>
</form>
</div>
<!--==service-info===========================-->
<section class="what-we-provide">
<!--**box1***********-->
<div class="w-info-box w-i-box1">
<!--icon-->
<div class="w-info-icon">
<i class="fa-solid fa-capsules"></i>
</div>
<!--text-->
<div class="w-info-text">
<strong>Specialised Service</strong>
<p>Lorem ipsum dolor sit </p>
</div>
</div>
<!--**box2***********-->
<div class="w-info-box w-i-box2">
<!--icon-->
<div class="w-info-icon">
<i class="fa-regular fa-comments"></i>
</div>
<!--text-->
<div class="w-info-text">
<strong>24/7 Advanced Care</strong>
<p>Lorem ipsum dolor sit </p>
</div>
</div>
<!--**box3***********-->
<div class="w-info-box w-i-box3">
<!--icon-->
<div class="w-info-icon">
<i class="fa-solid fa-square-poll-horizontal"></i>
</div>
<!--text-->
<div class="w-info-text">
<strong>Get Result Online</strong>
<p>Lorem ipsum dolor sit </p>
</div>
</div>
</section><!--end-->
<!--==Story=============================-->
<section id="our_story">
<!--**img**-->
<div class="our-story-img">
<img src="images/story_img.jpg" />
<a href="#" class="story-play-btn">
<i class="fa-solid fa-play"></i>
Play Video
</a>
</div>
<!--**text**-->
<div class="our-stroy-text">
<h2>Short Story About Our Clinic.</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Vitae quae ad aliquid in porro. Harum ipsa debitis deserunt ad facilis maxime! Accusantium ratione vitae quae repellendus, dolor debitis minima maiores.</p>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Ab accusamus explicabo alias magni mollitia ea excepturi! Aliquam temporibus <a>Read More</a></p>
<!--numbers-of-happy-patients-->
<div class="story-numbers-container">
<!--box-->
<div class="story-numbers-box s-n-box1">
<strong>1000+</strong>
<span>Happy Patients</span>
</div>
<!--box-->
<div class="story-numbers-box s-n-box2">
<strong>215+</strong>
<span>Expert Doctor</span>
</div>
<!--box-->
<div class="story-numbers-box s-n-box3">
<strong>315+</strong>
<span>Hospital Room's</span>
</div>
<!--box-->
<div class="story-numbers-box s-n-box4">
<strong>106+</strong>
<span>Award Wining</span>
</div>
</div>
</div>
</section><!--story-end-->
<!--==Our-Services======================-->
<section id="our-services">
<!--**heading********************-->
<div class="services-heading">
<!--text-->
<div class="services-heading-text">
<strong>Our Services</strong>
<h2>High Quality Services For You</h2>
</div>
<!--btns-->
<div class="service-slide-btns">
<div class="swiper-button-prev"></div>
<div class="swiper-button-next"></div>
</div>
</div>
<!--**container*******************-->
<div class="services-box-container">
<!-- Swiper -->
<div class="swiper mySwiperservices">
<div class="swiper-wrapper">
<!--**1*******-->
<div class="swiper-slide">
<!--**box1**-->
<div class="service-box s-box1">
<!--icon-->
<i class="fa-solid fa-tooth"></i>
<!--title-->
<strong>Dental Care</strong>
<!--details-->
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Dolorem ullam perspiciatis impedit consequuntur</p>
<!--read more-->
<a href="#">Read More</a>
</div>
</div><!--slide-end-->
<!--**1*******-->
<div class="swiper-slide">
<!--**box1**-->
<div class="service-box s-box2">
<!--icon-->
<i class="fa-solid fa-eye"></i>
<!--title-->
<strong>Eye Care</strong>
<!--details-->
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Dolorem ullam perspiciatis impedit consequuntur</p>
<!--read more-->
<a href="#">Read More</a>
</div>
</div><!--slide-end-->
<!--**1*******-->
<div class="swiper-slide">
<!--**box1**-->
<div class="service-box s-box3">
<!--icon-->
<i class="fa-solid fa-face-smile"></i>
<!--title-->
<strong>Skin Care</strong>
<!--details-->
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Dolorem ullam perspiciatis impedit consequuntur</p>
<!--read more-->
<a href="#">Read More</a>
</div>
</div><!--slide-end-->
<!--**1*******-->
<div class="swiper-slide">
<!--**box1**-->
<div class="service-box s-box4">
<!--icon-->
<i class="fa-solid fa-user-doctor"></i>
<!--title-->
<strong>Surgical</strong>
<!--details-->
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Dolorem ullam perspiciatis impedit consequuntur</p>
<!--read more-->
<a href="#">Read More</a>
</div>
</div><!--slide-end-->
</div><!--wrapper-end-->
</div><!--swiper-end-->
</div>
<!--btn-->
<span class="service-btn">Contact Us For Need Any Help And Services <a href="#">Let's get Started</a></span>
</section><!--services-end-->
<!--==Why-choose-us=======================-->
<section id="why-choose-us">
<!--**left*****************-->
<div class="why-choose-us-left">
<h3>Why Choose Us?</h3>
<!--==container====-->
<div class="why-choose-box-container">
<!--**box**-->
<div class="why-choose-box">
<!--icon-->
<i class="fa-solid fa-check"></i>
<!--text-->
<div class="why-choose-box-text">
<strong>Advance Care</strong>
<p>Lorem ipsum dolor sit</p>
</div>
</div>
<!--**box**-->
<div class="why-choose-box">
<!--icon-->
<i class="fa-solid fa-check"></i>
<!--text-->
<div class="why-choose-box-text">
<strong>Online Medicine</strong>
<p>Lorem ipsum dolor sit</p>
</div>
</div>
<!--**box**-->
<div class="why-choose-box">
<!--icon-->
<i class="fa-solid fa-check"></i>
<!--text-->
<div class="why-choose-box-text">
<strong>Medical & Surgical</strong>
<p>Lorem ipsum dolor sit</p>
</div>
</div>
<!--**box**-->
<div class="why-choose-box">
<!--icon-->
<i class="fa-solid fa-check"></i>
<!--text-->
<div class="why-choose-box-text">
<strong>Lab Test's</strong>
<p>Lorem ipsum dolor sit</p>
</div>
</div>
</div>
<!--==btn========-->
<a href="#" class="why-choose-us-btn">Make Appointment</a>
</div><!--left-end-->
<!--**right*******************-->
<div class="why-choose-us-right">
<h3>Emergency?<br/>
Contact Us
</h3>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Facilis iste, quam ratione rerum aliquid esse vero placeat? debitis velit cupiditate magni cumque corporis.</p>
<!--==container====-->
<div class="w-right-contact-container">
<!--**box**-->
<div class="w-right-contact-box">
<i class="fa-solid fa-phone"></i>
<!--text-->
<div class="w-right-contact-box-text">
<span>Call Us Now</span>
<strong>+123 4567 89</strong>
</div>
</div>
<!--**box**-->
<div class="w-right-contact-box">
<i class="fa-solid fa-envelope"></i>
<!--text-->
<div class="w-right-contact-box-text">
<span>Mail Us</span>
<strong>[email protected]</strong>
</div>
</div>
</div>
</div><!--right-end-->
</section><!--end-->
<!--==Team===========================-->
<section id="our-team">
<!--**heading*****************-->
<div class="our-team-heading">
<h3>Meet Our Specialist</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
</div>
<!--**team-container***********-->
<div class="team-box-container">
<!-- Swiper -->
<div class="swiper mySwiperteam">
<div class="swiper-wrapper">
<!--**1***-->
<div class="swiper-slide">
<!--**box**-->
<div class="team-box">
<!--img-->
<div class="team-img">
<img alt="" src="images/d1.png">
</div>
<!--text-->
<div class="team-text">
<strong>Dr. Paradox Alex</strong>
<span>Skin Specialist</span>
</div>
</div>
</div><!--end-slide-->
<!--**1***-->
<div class="swiper-slide">
<!--**box**-->
<div class="team-box">
<!--img-->
<div class="team-img">
<img alt="" src="images/d2.png">
</div>
<!--text-->
<div class="team-text">
<strong>Dr. Paradox Alex</strong>
<span>Skin Specialist</span>
</div>
</div>
</div><!--end-slide-->
<!--**1***-->
<div class="swiper-slide">
<!--**box**-->
<div class="team-box">
<!--img-->
<div class="team-img">
<img alt="" src="images/d3.png">
</div>
<!--text-->
<div class="team-text">
<strong>Dr. Paradox Alex</strong>
<span>Skin Specialist</span>
</div>
</div>
</div><!--end-slide-->
<!--**1***-->
<div class="swiper-slide">
<!--**box**-->
<div class="team-box">
<!--img-->
<div class="team-img">
<img alt="" src="images/d4.png">
</div>
<!--text-->
<div class="team-text">
<strong>Dr. Paradox Alex</strong>
<span>Skin Specialist</span>
</div>
</div>
</div><!--end-slide-->
<!--**1***-->
<div class="swiper-slide">
<!--**box**-->
<div class="team-box">
<!--img-->
<div class="team-img">
<img alt="" src="images/d5.png">
</div>
<!--text-->
<div class="team-text">
<strong>Dr. Paradox Alex</strong>
<span>Skin Specialist</span>
</div>
</div>
</div><!--end-slide-->
</div><!--wrapper-end-->
<div class="swiper-pagination"></div>
</div><!--swiper-end-->
</div>
</section><!--team-end-->
<!--==Testimonials============================-->
<section id="testimonials">
<!--**heading****************-->
<div class="testimonials-heading">
<h3>Our Patients FeedBack About Us</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Officia voluptates cupiditate, rerum rem odio fugit</p>
</div>
<!--**testimonials-Content****-->
<div class="testimonials-content">
<!--**img************-->
<div class="testimonials-img">
<img alt="" src="images/testimonials-img.png">
</div>
<!--**box-container**-->
<div class="testimonials-box-container">
<!-- Swiper -->
<div class="swiper mySwipertesti">
<div class="swiper-wrapper">
<!--**1***********-->
<div class="swiper-slide">
<!--**box**-->
<div class="testimonials-box">
<!--profile-->
<div class="t-profile">
<!--img-->
<div class="t-profile-img">
<img alt="" src="images/t1.jpg">
</div>
<!--text-->
<div class="t-profile-text">
<strong>Client Name</strong>
<span>From China</span>
<div class="t-rating">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
</div>
</div>
</div>
<!--feedback-->
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa est odit dicta sequi labore perferendis ut veritatis expedita, nihil sint! Delectus aut id voluptatibus nemo dolorum, quos consequatur commodi repudiandae?</p>
</div><!--box-end-->
</div><!--slide-end-->
<!--**2***********-->
<div class="swiper-slide">
<!--**box**-->
<div class="testimonials-box">
<!--profile-->
<div class="t-profile">
<!--img-->
<div class="t-profile-img">
<img alt="" src="images/t1.jpg">
</div>
<!--text-->
<div class="t-profile-text">
<strong>Client Name</strong>
<span>From China</span>
<div class="t-rating">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
</div>
</div>
</div>
<!--feedback-->
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa est odit dicta sequi labore perferendis ut veritatis expedita, nihil sint! Delectus aut id voluptatibus nemo dolorum, quos consequatur commodi repudiandae?</p>
</div><!--box-end-->
</div><!--slide-end-->
<!--**3***********-->
<div class="swiper-slide">
<!--**box**-->
<div class="testimonials-box">
<!--profile-->
<div class="t-profile">
<!--img-->
<div class="t-profile-img">
<img alt="" src="images/t1.jpg">
</div>
<!--text-->
<div class="t-profile-text">
<strong>Client Name</strong>
<span>From China</span>
<div class="t-rating">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
</div>
</div>
</div>
<!--feedback-->
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa est odit dicta sequi labore perferendis ut veritatis expedita, nihil sint! Delectus aut id voluptatibus nemo dolorum, quos consequatur commodi repudiandae?</p>
</div><!--box-end-->
</div><!--slide-end-->
</div><!--wrapper-end-->
<div class="swiper-pagination"></div>
</div><!--swiper-end-->
</div><!--container-end-->
</div><!--content-end-->
</section><!--testimonials-end-->
<!--==Subscribe===========================-->
<section id="subscribe">
<h3>Subscribe For New Updates From WeCare</h3>
<!--subcribe-box-->
<form class="subscribe-box">
<input type="email" placeholder="[email protected]">
<button>Subscribe</button>
</form>
</section><!--end-->
<footer>
<div class="footer-container">
<!--**comoany-box**-->
<div class="footer-company-box">
<!--logo-->
<a href="#" class="logo"><span>We</span>Care</a>
<!--details-->
<p> </p>
<!--social-box-->
<div class="footer-social">
<a href="#"><i class="fa-brands fa-facebook-f"></i></a>
<a href="#"><i class="fa-brands fa-instagram"></i></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
<a href="#"><i class="fa-brands fa-youtube"></i></a>
</div>
</div>
<!--**link-box***-->
<div class="footer-link-box">
<strong>Main Link's</strong>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Portfolio</a></li>
</ul>
</div>
<!--**link-box***-->
<div class="footer-link-box">
<strong>External Link's</strong>
<ul>
<li><a href="#">Our Product's</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Disclaimer</a></li>
<li><a href="#">Trem's and Condition's</a></li>
</ul>
</div>
<!--**link-box***-->
<div class="footer-link-box">
<strong>External Link's</strong>
<ul>
<li><a href="#">Our Product's</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Disclaimer</a></li>
<li><a href="#">Trem's and Condition's</a></li>
</ul>
</div>
</div>
<!--**bottom**********************-->
<div class="footer-bottom">
<span class="footer-owner"></span>
<span class="copyright">© Copyright 2024 </span>
</div>
</footer>
<!-- Swiper JS -->
<script src="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.js"></script>
<!-- Initialize Swiper -->
<script>
/*-services--*/
var swiper = new Swiper(".mySwiperservices", {
slidesPerView: 1,
spaceBetween: 10,
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
breakpoints: {
700: {
slidesPerView: 2,
spaceBetween: 40,
},
1024: {
slidesPerView: 3,
spaceBetween: 50,
},
},
});
/*--team--*/
var swiper = new Swiper(".mySwiperteam", {
slidesPerView: 1,
spaceBetween: 10,
pagination: {
el: ".swiper-pagination",
clickable: true,
},
breakpoints: {
560: {
slidesPerView: 2,
spaceBetween: 20,
},
950: {
slidesPerView: 3,
spaceBetween: 40,
},
1250: {
slidesPerView: 4,
spaceBetween: 40,
},
},
});
/*--testimonials--*/
var swiper = new Swiper(".mySwipertesti", {
pagination: {
el: ".swiper-pagination",
},
});
</script>
</body>
</html>