-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
100 lines (96 loc) · 3.95 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
98
99
100
<?php
include('functions.php');
if (!isLoggedIn()) {
$_SESSION['msg'] = "You must log in first";
header('location: login.php');
}
?>
<html>
<head>
<meta name="viewport" content="width=device-width">
<meta name="description" content="Blood Donation">
<meta name="keywords" content="donate,blood,recipients,blood group">
<meta name="author" content="Jayaraj, Varun Raj,Lava Kumar,Venkatesh">
<meta charset="utf-8">
<title>Home of blood bank</title>
<link rel="stylesheet" href="style (2).css" type="text/css">
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1><span class="highlight">Blood</span> Donation</h1>
</div>
<?php if (isset($_SESSION['success'])) : ?>
<div class="error success" >
<h3>
<?php
echo $_SESSION['success'];
unset($_SESSION['success']);
?>
</h3>
</div>
<?php endif ?>
<nav>
<ul>
<li class="current"><a href="index.html" >Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li><br>
</ul>
<ul class="container1">
<li><a href="form-register.html">Register</a></li>
<li><a href="form-login.html" class="active">Login</a></li>
<li><a href="form-search.html">Search</a>
</li>
</ul>
</nav>
</div>
</header>
<section id="showcase">
<div class="container">
<h1>Blood Donation</h1>
<p>“Blood Donation Will Cost You Nothing But It Will Save A Life!”</p>
</div>
</section>
<section id="newsletter">
<div class="container">
<h1>Subscribe to get notifications</h1>
<form>
<input type="email" placeholder="Enter email...">
<button type="Submit" class="button1">Subscribe</button>
</form>
</div>
</section>
<section id="boxes">
<div class="container">
<div class="box">
<img src="img/tips.jpg">
<h1>Blood Donation Tips</h1>
<p>UNIVERSAL DONORS AND RECIPIENTS
The most common blood type is O, followed by type A.
Type O individuals are often called "universal donors" since their blood can be transfused into persons with any blood type. Those with type AB blood are called "universal recipients" because they can receive blood of any type.<a href="healthtips.html">Read more</a></p>
</div>
<div class="box">
<img src="img/impacts.jpg">
<h1>Impact</h1>
<ul>
<li>Patients</li>
<li>Sponsors</li>
<li>Hospitals</li>
<li>Testimonials</li>
<li>Organisation</li>
<li><a href="patients.html">Read more</a></li>
</ul>
</div>
<div class="box">
<img src="img/sponsors.png">
<h1>SPONSORS</h1>
<p>
These are the stories of visionaries: the companies, churches, organizations and schools that see the need and have decided to make an impact by hosting drives of their own.<a href="sponsoship.html">Read more</a>
</p>
</div>
</div>
</section>
<footer>Blood Donation , Copyrights © 2017</footer>
</body>
</html>