-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (79 loc) · 3.27 KB
/
index.html
File metadata and controls
84 lines (79 loc) · 3.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CarePlus | Home</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<a href="index.html" class="logo"><i class="fas fa-heartbeat"></i> CarePlus</a>
<div class="nav-links">
<a href="index.html" class="active">Home</a>
<a href="doctors.html">Doctors</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="booking.html" class="btn-nav">Book Now</a>
</div>
<div class="menu-toggle"><i class="fas fa-bars"></i></div>
</nav>
<div class="carousel-container">
<div class="carousel-slide">
<div class="carousel-item">
<img src="photos/sthescope.jpg" alt="Team">
<div class="carousel-overlay"></div>
<div class="carousel-caption">
<h1>Your Health, Our Priority</h1>
<p>World-class healthcare services at your fingertips.</p>
<a href="doctors.html" class="btn-primary">Find a Doctor</a>
</div>
</div>
<div class="carousel-item">
<img src="photos/h1.jpg" alt="Hospital">
<div class="carousel-overlay"></div>
<div class="carousel-caption">
<h1>State-of-the-art Facilities</h1>
<p>We partner with top-rated hospitals.</p>
<a href="booking.html" class="btn-primary">Book Appointment</a>
</div>
</div>
<div class="carousel-item">
<img src="photos/hospital.jpg" alt="Consult">
<div class="carousel-overlay"></div>
<div class="carousel-caption">
<h1>Expert Specialists</h1>
<p>Consult with over 150+ experienced doctors.</p>
<a href="contact.html" class="btn-primary">Contact Us</a>
</div>
</div>
</div>
<button id="prevBtn" class="carousel-btn prev-btn"><i class="fas fa-chevron-left"></i></button>
<button id="nextBtn" class="carousel-btn next-btn"><i class="fas fa-chevron-right"></i></button>
</div>
<section class="network-section">
<div class="stats-grid">
<div class="stat-card">
<div class="icon-box"><i class="fas fa-user-md"></i></div>
<h3>150+</h3>
<p>Specialist Doctors</p>
</div>
<div class="stat-card">
<div class="icon-box"><i class="fas fa-hospital-alt"></i></div>
<h3>50+</h3>
<p>Partner Hospitals</p>
</div>
<div class="stat-card">
<div class="icon-box"><i class="fas fa-smile-beam"></i></div>
<h3>10,000+</h3>
<p>Happy Patients</p>
</div>
</div>
</section>
<footer>
<p>© 2026 CarePlus Healthcare System.</p>
</footer>
<script src="script.js"></script>
</body>
</html>