-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
97 lines (91 loc) · 1.83 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<title>Blood Donation</title>
</head>
<body>
<style>
html {
font-family: 'Open Sans', sans-serif;
}
body
{
background-image: url("http://positivepeople.md/wp-content/uploads/2017/02/blood-donation-700x314.jpg");
background-attachement:center;
background-size:cover;
}
img
{
border: 1px solid #ddd;
border-radius: 2px;
padding: 5px;
width: 150px;
}
img:hover
{
box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}
h11
{
color:rgb(0, 0, 102);
font-size: 250%;
}
h12
{
color:rgb(255, 102, 102);
font-size: 250%;
}
h13
{
color:rgb(51, 51, 204);
font-size: 250%;
}
p {
color:#A52A2A ;
}
a:link {
color: white;
}
a:visited {
color: white;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 12px 16px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color: #111;
}
.active {
background-color: #4CAF50;
}
</style>
<center><h11>ONLINE</h11><h12> BLOOD </h12><h13>BANK</h13></center>
<br>
<ul>
<li><a class="active" href="#home">Home</a></li>
<li><a href='donor_registration.html'>Donor Registration</a></li>
<li><a href='recipient_registration.html'>Recipient Registration</a></li>
<li><a href='bank_registration.html'>Blood Bank Registration</a></li>
<li><a href='result.php'>Registered Donors</a></li>
<li><a href='eligibility.html'>Eligibility</a></li>
<li><a href='login.html'>Login</a></li>
<li><a href='contactus.html'>About Us</a></li>
</ul>
<br>
<br>
</body>
</html>