forked from nabeeljay/bloodbank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdontmind.html
151 lines (139 loc) · 2.7 KB
/
dontmind.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<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;
}
blockquote{
display:inline-block;
background:rgb(125,124,200);
padding: 1px 1px 1px 1px;
margin: 0 0 10px;
/*position: relative;*/
/*Font*/
font-family: Georgia, serif;
font-size: 16px;
line-height: 1.2;
color: #A52A2A ;
text-align: justify;
/*Borders */
border-left: 10px solid #c76c0c;
border-right: 10px solid #c76c0c;
/*Box Shadow */
-moz-box-shadow: 2px 2px 10px #ccc;
-webkit-box-shadow: 2px 2px 10px #ccc;
box-shadow: 2px 2px 10px #ccc;
}
blockquote before{
content: "\201C"; /*Unicode for Left Double Quote*/
/*Font*/
font-family: Georgia, serif;
font-size: 60px;
font-weight: bold;
color: #A52A2A ;
/*Positioning*/
position: absolute;
left: 5px;
top:15px;
}
blockquote::after{
/*Reset to make sure*/
content: "";
}
blockquote em{
font-style: italic;
}
blockquote cite {
color: rgb(156,0,100);
font-size: 16px;
display:inline-block;
margin-top: 5px;
}
blockquote cite:before {
content: "\2014 \2009";
}
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: 14px 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>