-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
59 lines (59 loc) · 2.43 KB
/
about.html
File metadata and controls
59 lines (59 loc) · 2.43 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/index.css">
<title>Blood Donation Website</title>
</head>
<body>
<header>
<div class="container">
<div id="title">
<h1>
Rokto
</h1>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.php">Contact</a></li>
<li><a href="login.php">Login</a></li>
<li><a href="register.html">Register</a></li>
</ul>
</nav>
</div>
</header>
<section id="about">
<div class="container">
<div id="about-area">
<h1>
About Rokto
</h1>
<p>
Rokto is a website for people who want to donate blood and receive blood. This website is a
place where voluntary blood donors can list themselves as donors, and people who need
blood can easily find these voluntary blood donors and contact them. By this, both parties are
benefited. Rokto makes it easy to get the contact information of blood donors without any
hassle. As when someone is searching for a donor, they don’t even have to open an account
and waste time on that. They can just put their location and the blood group they need, and
they will find a list of contact information of the donors. Rokto also makes it easy for blood
donors as sometimes they can be unavailable or not in a position to donate blood. To help
with that, donors can change their status, not show their contact information. And Rokto makes
sure the user can easily remove their account if they want to, as Rokto respects user choice.
</p>
</div>
</div>
</section>
<footer>
<div class="container">
<section>
<h3>Contact Info:</h3>
<p>Email: abcd@gmailcom</p>
</section>
</div>
</footer>
</body>
</html>