-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIndex.html
More file actions
33 lines (29 loc) · 749 Bytes
/
Index.html
File metadata and controls
33 lines (29 loc) · 749 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HealthConnect - Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>HealthConnect</h1>
<nav>
<a href="index.html">Home</a>
<a href="Docteur.html">Doctors</a>
<a href="chat.html">Chat</a>
</nav>
</header>
<main>
<section class="hero">
<h2>Book Appointments with Trusted Doctors</h2>
<p>Fast, easy and secure. Find the right specialist and schedule your visit online.</p>
<a href="Docteur.html" class="btn">Find a Doctor</a>
</section>
</main>
<footer>
<p>© 2025 HealthConnect. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>