forked from fabianuzukwu/EducateAll-Foundation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
donation.html
68 lines (62 loc) · 2.69 KB
/
donation.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="./styles/donation.css" rel="stylesheet" />
<title>Donation</title>
</head>
<body>
<div class="container">
<section id="header">
<div class="nav">
<div class="left">
<img id="logo" src="images/logo-white.png" height="60px" width="180px" alt="logo">
</div>
<div class="right">
<div><a href="index.html">HOME</a></div>
<div><a href="about.html">ABOUT US</a></div>
<div id="donation-link"><a href="donation.html">DONATIONS</a></div>
<div><a href="contact.html">CONTACT US</a></div>
<div><a href="event.html">EVENTS</a></div>
</div>
</div>
<div class="main">
<div class="donationOptions">
<h1>Choose a donation amount</h1>
<div class="donationOption">
<div><input type="checkbox" /> <span>$5</span> <span>Lorem ipsum dolor sit amet consectetur adipisicing elit.</span></div>
<div><input type="checkbox" /> <span>$10</span> <span>Lorem ipsum dolor sit amet consectetur adipisicing elit.</span></div>
<div><input type="checkbox" /> <span>$20</span> <span>Lorem ipsum dolor sit amet consectetur adipisicing elit.</span></div>
</div>
<div>
<label>enter a custom amount <input type="text"></label>
</div>
</div>
<div class="main-info">
<div>TOGETHER</div>
<div>WE CAN</div>
<div>GIVE THE</div>
<div>CHILDREN</div>
<div>EDUCATION</div>
</div>
</div>
</section>
<!-- Donations Progress Bar -->
<div class="D1">
<h1>HELP US REACH OUR GOAL OF N100,000 FOR THE SCHOOL BAG PROJECT</h1>
<p>Your gifts, both large and small, will help us to achieve our mission of supporting excellence in education.</p>
<p>Thank you in advance for your generous support that allows us to make a difference in the lives of thousands of students each year.
</p>
<div class="progress-bg">
<div class="progress-bar">
<h3 class="raised">N50,000 raised </h3>
</div>
<h3 class="goal">Goal: N100,000</h3>
</div>
<section class="footer">
</section>
</div>
</body>
</html>