-
Notifications
You must be signed in to change notification settings - Fork 8
/
emergency.html
94 lines (93 loc) · 3.55 KB
/
emergency.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
<!DOCTYPE html>
<html>
<head>
<title>Red Stream</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600;700&display=swap"
rel="stylesheet">
<link rel="shortcut icon" href="resources/logo.png">
<style>
.button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 90px 170px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 184px;
transition-duration: 0.4s;
cursor: pointer;
}
.button3:hover {
background-color: rgb(153, 134, 111);
color: white;
border:4px solid #494244;
}
.button3 {
background-color:#cfcfc0;
color: rgb(153, 134, 111);
border: 2px solid #353434;
}
</style>
</head>
<body>
<section class="header1">
<nav>
<a href="index.html"><img src="resources/logo.png" alt="hi"></a>
<div class="nav-links1">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="registration.php">REGISTER</a></li>
<li><a href="index.html#findonor">FIND DONOR</a></li>
<li><a href="whydonateblood.html">WHY DONATE BLOOD</a></li>
<li><a href="canyoudonate.html">CAN YOU DONATE</a></li>
<li><a href="aboutus.html">REFER A FRIEND</a></li>
<li><a href="emergency.html">It's an emergency!</a></li>
</ul>
</div>
</nav>
</section>
<section class="ratio">
<div class="dnprocess">
<h1>
Emergency
</h1>
</div>
<br><br><br>
<a href="ambulance.html"><button class="button button3"><h2>Call an Ambulance</h2><br></button></a>
<a href="helpdesk.html"><button class="button button3"><h2>Call our emergency<br> help desk</h2></button></a>
<br><br>
<center><a href="prebook.html"><button class="button button3"><h2>Book blood for an upcoming date</h2><br></button></a></center>
</div>
<br><br><br><br> <br><br><br><br> <br><br><br><br> <br>
<section class="bottom">
<div class="footer">
<div class="col-1">
<h3>USEFUL LINKS</h3>
<a href="index.html">HOME</a>
<a href="registration.html">REGISTRATION</a>
<a href="whydonateblood.html">WHY DONATE BLOOD</a>
<a href="canyoudonate.html">CAN YOU DONATE</a>
<a href="contact.html">CONTACT US</a>
</div>
<div class="col-2">
<h3> NEWSLETTER</h3>
<form>
<input type="email" placeholder="Your Email Address" required>
<br>
<button type="submit">SUBSCRIBE NOW</button>
</form>
</div>
<div class="col-3">
<h3> CONTACT</h3>
<br>
<p>231, vaikom Road, Near Thalook hospital<br>Kottayam, Kerala, IN<br>Contact: +91 7558 9513 51</p>
</div>
</div>
</section>
</body>
</html>