-
-
Notifications
You must be signed in to change notification settings - Fork 170
/
ShreyaPrabhu.html
127 lines (110 loc) · 4.11 KB
/
ShreyaPrabhu.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>my first project</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<style>
.jumbotron{
background-color:#EC4A0E;
}
body {
background-color: #b8b8b8;
}
.image{
width:20px;
height:20px;
}
.blink{
width: 100px;
height: 100px;
background-color: #EC4A0E;
-webkit-animation-name: example; /* Chrome, Safari, Opera */
-webkit-animation-duration: 4s; /* Chrome, Safari, Opera */
animation-name: example;
animation-duration: 2s;
animation-iteration-count: infinite;
}
@-webkit-keyframes example {
from {background-color: #EC4A0E;}
to {background-color: white;}
}
@keyframes example {
from {background-color: #EC4A0E;}
to {background-color: white;}
}
</style>
<body>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">SHARE IT</a>
</div>
<div>
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Page 1</a></li>
<li><a href="#">Page 2</a></li>
<li><a href="#">FAQ's</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#"><span class="glyphicon glyphicon-user"></span> Sign Up</a></li>
<li><a href="#"><span class="glyphicon glyphicon-log-in"></span> Login</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="jumbotron">
<h1>Share a little, Care a little - Donate Blood</h1>
<div class="container">
<p>It takes only<mark class="blink">15 minutes</mark>to donate blood!!!</p>
<p>The term BLOOD DONATION though consist of 13 letters, but the beautiful essence of saving lives behind it, equals million letters. It is a wonderful contribution to share a part of your belonging to the one who needs it. </p>
</div>
</div>
<div class="row">
<h2> FOR BETTER EXPERIENCE</h2><hr/>
<div class="col-sm-2">
<h3>HYDRATE</h3><hr/>
<div class:"image"><img src="https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQEc2d8y0qEHe6_VjTmE07V-NfJXhvYlhVIMUAlItBBvSlrhS9A"></div><br>
<p>Day before...</p>
<p>Increase your fluids the day before donating.</p>
</div>
<div class="col-sm-2">
<h3>SNACKS</h3><hr/>
<div class:"image"><img src="http://www.hasslefreeclipart.com/clipart_food/snacks_dessert/chips.gif"></div><br><br>
<p>Evening before...</p>
<p>Eat salty snacks to increase salt intake the evening before donating.</p>
</div>
<div class="col-sm-2">
<h3>SLEEP</h3><hr/>
<div class:"image"><img src="http://cdn.graphicsfactory.com/clip-art/image_files/tn_image/6/706256-tn_Baby035.gif"></div><br><br><br><br>
<p>Night before...</p>
<p>Get a good night's sleep prior to donation day.</p>
</div>
<div class="col-sm-2">
<h3>BREAKFAST</h3><hr/>
<div class:"image"><img src="http://clipart.coolclips.com/150/wjm/tf05308/CoolClips_vc061783.jpg"></div><br><br><br>
<p>Morning...</p>
<p>Eat a well balanced breakfast the morning of your donation.</p>
</div>
<div class="col-sm-2">
<h3>SCREENING</h3><hr/>
<div class:"image"><img src="http://l.thumbs.canstockphoto.com/canstock4249290.jpg"></div><br><br>
<p>Before donation...</p>
<p>Get yourself checked to find if you are eligible for blood donation.</p>
</div>
<div class="col-sm-2">
<h3>REFRESHMENTS</h3><hr/>
<div class:"image"><img src="http://www.batcow.co.uk/scot/images/refreshments.gif"></div><br><br>
<p>After donation...</p>
<p>Eat snacks and drink something in refreshment area. Enjoy the feeling of helping someone.</p>
</div>
</div>
</div>
</body>
</html>