-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvolunteer.php
138 lines (106 loc) · 3.44 KB
/
volunteer.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
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
128
129
130
131
132
133
134
135
136
137
138
<?php include('security.php'); ?>
<?php include('includes/header.php');?>
<?php include('includes/navbar.php');?>
<style type="text/css">
button {
background-color:#F76C6C; /* Green */
border: none;
color: white;
padding: 10px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 12px;
margin: 4px 2px;
cursor: pointer;
border-radius: 12px;
}
.INDIVIDUALS{
background-color: #ffc107;
}
.ORGANISATIONS{
background-color:#dc3545;
}
.card-header{
background-color:#28a745;
color:black;
}
</style>
<br><br><br>
<img src="img/individual/bg.jpg" style="height: auto; width: 100%; margin-top: 5px;" id="icons">
<br><br>
<div class="container">
<h3 style="text-align: center;">VOLUNTEER/ DONATE FOR FIGHT <i class="fas fa-viruses" style="height: 42px; width: 42px;"></i><br>AGAINST <b style="color: red;">CORONA</b></h3>
</div>
<div class="whole-wrap">
<div class="container box_1170">
<div class="jumbotron">
<div class="card-deck">
<div class="card text-center INDIVIDUALS">
<div class="card-body">
<h5 class="card-title">FOR <br> INDIVIDUALS</h5>
<a href="individual.php"><button><p class="card-text" style="color: white"> VOLUNTEER NOW</p></button></a>
</div>
</div>
<div class="card text-center ORGANISATIONS ">
<div class="card-body">
<h5 class="card-title">FOR<br>ORGANISATIONS</h5>
<a href="https://sannadhasena.kerala.gov.in/volunteerregistration"><button><p class="card-text" style="color: white"> VOLUNTEER NOW</p></button></a>
</div>
</div>
</div>
<br>
<p style="text-align: center;">As per the need, you will be contacted by the concerned authorities of States/UTs/Ministry of Health and Family Welfare, for your donated medical supply items/equipments</p>
</div>
<div class="card-deck">
<div class="card ">
<div class="card-header" >Health</div>
<div class="card-body">
<ul>
<li>Donate Medical Equipments</li>
<li>Paramedic</li>
<li>Infection prevention and control</li>
<li>Assisting primary healthcare workers</li>
<li>Helping elderly and those in need.</li>
<li>Dead body management</li>
<li>Transportation of patients</li>
</ul>
</div>
</div>
<div class="card ">
<div class="card-header">Communication</div>
<div class="card-body">
<ul>
<li>Public Awareness on Hygiene practices</li>
<li>Promote social distancing measures</li>
<li>Community level, RWA, Social Groups, Religious places awareness campaigns.</li>
<li>Manning of help lines</li>
</ul>
</div>
</div>
<div class="card ">
<div class="card-header">Entrepreneurial</div>
<div class="card-body">
<ul>
<li>Assisting in production of PPE, masks, sanitizers etc.</li>
<li>IT based solutions</li>
<li>Logistics</li>
</ul>
</div>
</div>
<div class="card ">
<div class="card-header">Essential Services</div>
<div class="card-body">
<ul>
<li>Assisting District Administration in quarantine, home isolation and law and order arrangements</li>
<li>Disinfection and cleaning services</li>
<li>Door to door information and service management</li>
</ul style="list-style: square; color: black;">
</div>
</div>
</div>
</div>
</div>
<br><br><br>
<?php include('includes/scripts.php');?>
<?php include('includes/footer.php');?>