-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdonationform.html
More file actions
95 lines (76 loc) · 4.41 KB
/
donationform.html
File metadata and controls
95 lines (76 loc) · 4.41 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
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
<html>
<head>
<link rel="stylesheet" href="third.css">
</head>
<body>
<table style="width: 1000px;"">
<tr>
<th>
<h1>WHY I SHOULD CARE</h1>
<ul>
<li>
13,40,000 children below 5 die in a year, that is 3,671 under 5 child deaths per day
</li>
<li>
Nearly half of all child deaths under 5 in India are attributed to undernutrition
</li>
<li>
1 in every 8 children in India is working, when they should be at school
</li>
<li>
More than half (56%) of the under 5 deaths occur within the first 28 days
of life, we work to prevent these lives
</li>
<li>
India accounts for more than 3 out of 10 stunted children in the world
</li>
<li>
47% of the women in India are married when they are a child (before the age of 18), and
30% bear a child when they are a child (adolescent mothers)
</li>
<li>
17.7 million children and adolescents are out of school in India,this is 14% of world's population of children out of school
</li>
<li>
20% of grade 2 children in India cannot recognize numbers 1-9;
53% of children drop out of school at elementary level
</li>
<li>
49.5% of grade 5 children cannot do subtraction and 55% of grade 8 children
cannot solve 3 digits by 1 digit division
problem; 51.09% of grade 5 children cannot read grade 2 English and 25.4%
children of grade 8 cannot read grade 2 text
</li>
</ul>
</th>
<td>
<form id="f1" action="donateform2.html">
<fieldset >
<legend >Details</legend>
<h1 style="color: black;">Kindly fill your details</h1>
<label for="fname">First name:*</label><br>
<input type="text" id="fname" name="fname" placeholder="John" required><br>
<label for="lname">Last name:*</label><br>
<input type="text" id="lname" name="lname" placeholder="Doe" required><br><br>
<label for="pno">Phone No:*</label><br>
<input type="tel" id="pno" name="pno" placeholder="##" maxlength="10" required><br><br>
<label for="mail">Email:*</label><br>
<input type="email" id="mail" name="mail" placeholder="##" required><br><br>
<label for="country">Country*</label><br>
<input type="text" id="country" name="country" placeholder="##" required><br><br>
<label for="address">Address*</label><br>
<input type="text" id="address" name="address" placeholder="##" required><br><br>
<input type="submit" value="PAY NOW" style="background-color: rgb(252, 67, 67);">
</fieldset>
</form>
<form action="donate.html">
<input type="submit" value="BACK" >
</form>
<form action="payment gateway.html">
<input type="submit" value="HOME" >
</form>
</td>
</tr>
</table>
</body>
</html>