-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
43 lines (34 loc) · 1.11 KB
/
index.php
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
<html>
<head>
<title>Blood Donation</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
</head>
<style> .container {
padding: 10px;
padding-right: 500px;
padding-left: 500px;
}
</style>
<body>
<div class="header">
<img src="static/bd.jpg" alt="Blood_Donation" width="1540" height="340" align="middle">
</div>
<div class="w3-bar w3-black">
<a href="#" class="w3-button">Blood Donation Management System</a>
</div class="w3-container">
<center><p><em><h2>“To give blood you need neither extra strength nor extra food, and you will save a life.”</h2></em></p></center>
<?php
echo "<center><p><h3>Identify who you are!</h3></p></center>";
?>
<div class="container">
<ul class="w3-ul w3-card-4 w3-center w3-hoverable" style="width:100%">
<li><a href="Hospital.php">Hospital</li>
<li><a href="Organisation.php">Organisation</li>
<li><a href="Donor.php">Donor</li>
<li><a href="BloodBank.php">BloodBank</li>
</ul>
</div>
</body>
</html>