-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (30 loc) · 1.09 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
<html>
<head>
<title>Blood Donation Management System</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600&display=swap" rel="stylesheet">
</head>
<body>
<div class="banner">
<div class="navbar">
<a href="index.html">
<img src="images/logo.png" class="logo">
</a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="user/login-user.php">Login</a></li>
<li><a href="user/search.php">Search Donor</a></li>
<li><a href="admin/login.php">Admin</a></li>
<li><a href="html/contact.html">About Us</a></li>
</ul>
</div>
<div class="content">
<h1>Donate Blood, Save Lives</h1>
<p>A single drop of blood can make a huge difference.</p>
<div>
<button onclick="document.location='user/login-user.php'" class="button"><span></span>Donate Now</button>
</div>
</div>
</div>
</body>
</html>