-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (40 loc) · 1.15 KB
/
Copy pathindex.html
File metadata and controls
42 lines (40 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<nav>
<div class="dropdown">
<button class="dropbtn">Menu </button>
<div class="dropdown-content">
<a href="about.html">About Us</a>
<a href="contact.html">Contact Us</a>
</div>
</div>
</nav>
</header>
<main>
<section id="registration" class="registration-section">
<h2>Welcome to The GOODWILL Healthcare</h2>
<p>Please select your registration type:</p>
<div class="dropdown">
<button class="dropbtn">Register </button>
<div class="dropdown-content">
<a href="patient-registration.html">Patient Registration</a>
<a href="hospital-registration.html">Hospital Registration</a>
<a href="pharmacy-registration.html">Pharmacy Registration</a>
</div>
</div>
<a href="login.html" class="login-btn">Login</a>
</section>
</main>
<footer>
<!-- Footer content -->
</footer>
</body>
</html>