-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdonate.html
More file actions
93 lines (92 loc) · 2.98 KB
/
donate.html
File metadata and controls
93 lines (92 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Donation Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #f7f7f7;
}
h1 {
text-align: center;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: #ffffff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.form-group {
margin-bottom: 15px;
}
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
select, input, textarea {
width: 100%;
padding: 10px;
margin-top: 5px;
border-radius: 5px;
border: 1px solid #ccc;
}
.button {
background-color: #007bff;
color: #ffffff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
width: 100%;
}
.button:hover {
background-color: #0056b3;
}
.form-title {
margin-top: 30px;
text-align: center;
}
</style>
</head>
<body>
<h1>Donate to Help Hurricane Victims</h1>
<div class="container">
<div class="form-group">
<label for="sponsor">Choose a Sponsor:</label>
<select id="sponsor">
<option value="uber">Uber - Donate a Ride</option>
<option value="lyft">Lyft - Donate a Ride</option>
<option value="chickfila">Chick-fil-A - Provide a Hot Meal</option>
<option value="lows">Lowe's - Provide Sandbags</option>
<option value="homeDepot">Home Depot - Provide Sandbags</option>
<option value="fidelity">Fidelity - Financial Support</option>
<option value="manulife">Manulife - Financial Support</option>
<option value="johnHancock">John Hancock - Financial Support</option>
<option value="americanAirlines">American Airlines - Donate Evacuation Points</option>
</select>
</div>
<button class="button">Donate Now</button>
<h2 class="form-title">Become a Sponsor</h2>
<div class="form-group">
<label for="company-name">Company Name:</label>
<input type="text" id="company-name" placeholder="Enter your company name" />
</div>
<div class="form-group">
<label for="contact-email">Contact Email:</label>
<input type="email" id="contact-email" placeholder="Enter your email" />
</div>
<div class="form-group">
<label for="description">Description of Support:</label>
<textarea id="description" rows="4" placeholder="Describe how you would like to support"></textarea>
</div>
<button class="button">Submit</button>
</div>
</body>
</html>