-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
51 lines (49 loc) · 1.73 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
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RedBank - Home</title>
<link rel="stylesheet" href="./content/Main.css">
<style>
a:link, a:active, a:visited
{
background-color: black;
color: white;
text-decoration: none;
}
a:hover
{
background-color: darkslategray;
}
</style>
</head>
<body>
<div class="pTitle">Red Bank</div>
<div class="login">
<a href="./content/register.php">Register</a>
<a href="./content/login.php" >Login</a>
</div>
<div class="main">
<span> </span>
<a href="./content/page1.html">About Us</a>
<a href="./content/page2.html">Blood Banks</a>
<a href="./content/page3.html">How to Donate</a>
<a href="./content/page4.php">Contact Us</a>
</div>
<div class ="container">
<div class ="gallery">
<img src="./img/find.jpeg">
<a href="./content/findb.html"><div class="desc">FIND BLOOD</div></a>
</div>
<div class ="gallery">
<img src="./img/reqt.jpg">
<a href="./content/reqtd.php"> <div class="desc">REQUEST DONOR</div></a>
</div>
<div class ="gallery">
<img src="./img/donor.jpg">
<a href="./content/rdonor.php"> <div class="desc">BE A DONOR </div></a>
</div>
</div>
</body>
</html>