-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
147 lines (126 loc) · 5.06 KB
/
index.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Humanity Support Team</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header id="header">
<div class="container">
<div class="header-title">
<h1>Let’s Help Those Who Are More In Need</h1>
<p>Our mission is to provide help and assistance.</p>
<button class="btn">Donate Now</button>
</div>
</div>
</header>
<main>
<!-- Donate Section -->
<section>
<div class="container">
<div class="donate-section">
<div class="donate-info">
<h1>Donate Today</h1>
<p>With your support we can deliver lifesaving food to children and families most in need</p>
</div>
<div class="donate-ammount">
<div class="ammount">100<span>tk</span></div>
<div class="ammount">200<span>tk</span></div>
<div class="ammount active">500<span>tk</span></div>
<div class="ammount">1,000<span>tk</span></div>
<div class="ammount">5,000<span>tk</span></div>
</div>
<div class="donate-input">
<input type="text" placeholder="Any Amount (Taka)">
<br>
<button class="btn">Donate Now</button>
</div>
</div>
</div>
</section>
<!-- Our Donate Plan -->
<section>
<div class="container">
<div class="donatetion">
<div class="donate-info">
<h1>Our Donate Plan</h1>
<p>Your Donation Helps a Child Get Meals, Medical Care, Tutoring and Protection.</p>
</div>
<div class="donate-services">
<div class="service food">
<img src="./images/icons/food.png" alt="">
<h2>Food for a family</h2>
<p>Your donation will serve food packages to families.</p>
</div>
<div class="service family">
<img src="./images/icons/Frame-1.png" alt="">
<h2>Shelter for a family</h2>
<p>Your donation will serve food packages to families.</p>
</div>
<div class="service education">
<img src="./images/icons/shelter.png" alt="">
<h2>Education for a family</h2>
<p>Your donation will serve food packages to families.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Team Work -->
<section>
<div class="container">
<div class="Team-Title">
<h2>Team Work </h2>
</div>
<div class="team">
<div class="work">
<img src="./images/images/donation5.jpg" alt="">
</div>
<div class="work">
<img src="./images/images/donation11.jpg" alt="">
</div>
<div class="work">
<img src="./images/images/donation2.jpg" alt="">
</div>
</div>
<div class="team">
<div class="work">
<img src="./images/images/donation10.jpg" alt="">
</div>
<div class="work">
<img src="./images/images/donation9.jpg" alt="">
</div>
<div class="work">
<img src="./images/images/donation12.png" alt="">
</div>
</div>
</div>
</section>
<!-- Get Updates Section -->
<section>
<div class="container">
<div class="update-info">
<div class="update-title">
<h2>Get My Updates</h2>
<p>Write Your Email And Cannect some Pepole</p>
</div>
<div class="contact">
<input type="email" placeholder="Write Your Email">
<button class="btn">Subscribe</button>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<div class="footer">
<h2>Be Humble</h2>
<p>Support All Time</p>
</div>
</footer>
</body>
</html>