-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdonate.html
executable file
·117 lines (89 loc) · 3.81 KB
/
donate.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Disaster donations</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="donate.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="grid">
<div id="title">
<h1>Donate</h1>
</div>
<div id="menu">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./donate.html">Donate</a></li>
</ul>
</div>
<div id="donate-fields">
<h2>Please donate now</h2>
<label for="formName">Name</label>
<input type="text" value="" id="formName" />
<label for="formEmail">Email address</label>
<input type="text" value="" id="formEmail" />
<label for="ccNum">Credit card number</label>
<input type="text" value="" id="ccNum" />
<label for="ccCVV">CVV</label>
<input type="text" value="" id="ccCVV" />
<label for="donationAmount">Donation amount</label>
<input type="text" value="$" id="donationAmount" />
<input type="button" value="Donate" id="donateButton" />
</div>
<div id="donate-results">
</div>
<div id="don1">
<h2>So far, your generosity has helped collect</h2>
<p class="big">$1,420,792</p>
<p>worldwide</p>
</div>
<div id="don2">
<h2>Donate Money</h2>
<p>Even a small donation can save lives!</p>
<p><a href="./donate.html" class="button">Donate now</a></p>
</div>
<div id="don3">
<h2>Become a Volunteer</h2>
<p>We are in need of volunteers to distribute aid and help with rehabilitation.</p>
</div>
<div id="how-help">
<p>How to help</p>
</div>
<div id="why1" class="why">
<h2>Why donate?</h2>
<p>It saves lives! As an added benefit, our 501(c)(3) tax-exempt organization lets you claim donations, reducing your taxible income!</p>
</div>
<div id="why2" class="why">
<h2>Become A Volunteer</h2>
<p>Even with food and shelter, we need able bodied volunteers to help with distributing resources and cleanup.</p>
</div>
<div id="why3" class="why">
<h2>Sponsorship</h2>
<p>You can sponsor a family or group of families till they're on their feet.</p>
</div>
<div id="about" class="why">
<p>About us text</p>
<p>Photo credit:<br />
<a href="https://flickr.com/photos/floridamemory/3659411397/">Storm surge</a><br />
<a href="https://flickr.com/photos/scguard/44918321411/">Flood</a>.</p>
</div>
<div id="sitelinks" class="why">
<p>Site links</p>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./donate.html">Donate</a></li>
</ul>
</div>
<div id="contact" class="why">
<p>203 Fake St. Mountain View, San Francisco, California, USA</p>
<p> +1 555 5555 555</p>
<p>[email protected]</p>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" crossorigin="anonymous">
</script>
<script src="donate.js"></script>
</body>
</html>