-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdoctors.html
42 lines (42 loc) · 1.19 KB
/
doctors.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Doctors List</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Meet the Doctors</h1>
</header>
<main class="doctor-list">
<a href="doctor-profile.html?doctor=Dr.+Smith" class="doctor-card">
<h3>Dr. Krishnan Kumar</h3>
<p>Speciality: Cardiologist</p>
<p>Experience: 15 years</p>
</a>
<a href="doctor-profile.html?doctor=Dr.+Jane+Doe" class="doctor-card">
<h3>Dr. Shalini K.</h3>
<p>Speciality: Neurologist</p>
<p>Experience: 10 years</p>
</a>
<a href="doctor-profile.html?doctor=Dr.+Emily+White" class="doctor-card">
<h3>Dr. Aatmaram</h3>
<p>Speciality: Pediatrician</p>
<p>Experience: 8 years</p>
</a>
<a href="doctor-profile.html?doctor=Dr.+Emily+White" class="doctor-card">
<h3>Dr. Govinda </h3>
<p>Speciality: Dentist</p>
<p>Experience: PG Student</p>
</a>
</main>
<!-- Footer -->
<footer>
<div class="container">
<p>© 2025 HealthHive. All rights reserved.</p>
</div>
</footer>
</body>
</html>