-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
356 lines (346 loc) · 12.9 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/global.css" />
<link rel="stylesheet" href="css/style.css" />
<title>AD Life Home</title>
<link rel="icon" type="image/x-icon" href="/images/assests/logo.png" />
</head>
<body>
<div class="header">
<div class="navbar">
<div class="navleft">
<img src="images/assests/logo.png" alt="logo" />
<div class="search-container">
<input type="text" id="search" />
<div id="searchResults"></div>
</div>
<!-- <input type="text" id="search" /> -->
</div>
<div class="navright">
<a href="index.html" class="navitems">Home</a>
<a href="#contact" class="navitems">Contact Us</a>
<a href="#volunteer" class="navitems">Volunteer</a>
<img
src="images/assests/grip.png"
alt="menu"
id="menu-button"
onclick="toggleMenu()"
/>
</div>
</div>
<div id="dropdown-menu">
<div id="close-button">
<img
src="images/assests/close.png"
alt="close"
onclick="toggleMenu()"
/>
</div>
<div class="dropdownbody" id="mobileview">
<a href="index.html" class="menu-item"><h5>Home</h5></a>
</div>
<div class="dropdownbody" id="mobileview">
<a href="#contact" class="menu-item"><h5>Contact Us</h5></a>
</div>
<div class="dropdownbody" id="mobileview">
<a href="index.html#volunteer" class="menu-item"
><h5>Volunteer</h5></a
>
</div>
<div class="dropdownbody">
<a href="activites.html" class="menu-item"><h5>Activities</h5></a>
<ul>
<li>Education</li>
<li>Health</li>
<li>Livelihoods</li>
<li>Research and documentation</li>
</ul>
</div>
<div class="dropdownbody">
<a href="information.html" class="menu-item"><h5>Information</h5></a>
<ul>
<li>Registration</li>
<li>Trustees Profile</li>
<li>Advisors Profile</li>
</ul>
</div>
<div class="dropdownbody">
<a href="mentees.html" class="menu-item"
><h5>Mentorship Program</h5></a
>
</div>
</div>
<hr class="splitter" />
<div class="headerbody">
<h1>Changing Lives, One Act of Kindness at a Time.</h1>
<p>
Our activities aim to provide better outcomes for marginalized and
vulnerable people through interventions and support in health
(including nutrition), education, and empowerment.
</p>
<a href="#donation"><button class="headerbtn">Donate Now</button></a>
<p class="headerquote">
Everything is possible only with good health and adequate nutrition.
</p>
</div>
</div>
<div class="bodytop">
<h2>
<font color="#E6222B">Empowering</font> Lives,
<font color="#E6222B">Enriching</font> Futures
</h2>
<hr class="bodytopsplitter" />
</div>
<div class="bodyquote">
<div class="quoteheader">
"The best way to find yourself is to lose yourself in the service of
others."
</div>
<hr class="quotesplitter" />
<p class="quoteby">- Mahatma Gandhi</p>
<div class="quotes">
<div class="quotebody">
<p>
AD Life is an 18-year-old Trust that is passionate about making a
difference in the lives of people who are marginalized or
vulnerable. This passion is reflected in our motto. Adding Value to
Life’.
</p>
</div>
<div class="quotebody">
<p>
We are making a difference through our work on those aspects that
bring about a sustainable change in the lives of people.
</p>
</div>
</div>
</div>
<div class="bodymissionmain">
<div class="bodymission">
<div class="bodymissiontop">
<img src="images/home/body2.png" alt="mission" />
<img src="images/home/body3.png" alt="mission" />
</div>
<div class="bodymissionbottom">
<img src="images/home/body4.png" alt="mission" />
<img src="images/home/body1.png" alt="mission" />
</div>
</div>
<div class="bodymissiontext">
<h2>Our <font color="#E6222B">Mission</font></h2>
<hr class="bodymissiontextsplitter" />
<p class="missionhead">
Transforming <font color="#E6222B">Lives</font>, Building
<font color="#E6222B">Futures</font>
</p>
<ul>
<li>
We promote
<font color="#E6222b"><i>health and nutrition</i></font> through
targeted initiatives, ensuring a brighter, healthier future for all.
</li>
<li>
We foster
<font color="#E6222b"
><i>livelihoods and strengthens market linkages</i></font
>, empowering communities for sustainable economic growth.
</li>
<li>
We are dedicated to expanding
<font color="#E6222b"
><i>access to education, including higher education</i></font
>, to unlock the full potential of future generations.
</li>
<li>
We <font color="#E6222b"><i>Empowers vulnerable people</i></font
>, providing them with the tools and opportunities needed to thrive
and lead fulfilling lives.
</li>
<li>
We are committed to advancing knowledge through rigorous
<font color="#E6222b"><i>research and documentation</i></font>
efforts, driving informed decision-making and positive change.
</li>
<li>
We actively engage
<font color="#E6222b"><i>relief activities</i></font> to provide
immediate assistance and support to those in crisis.
</li>
</ul>
<p></p>
</div>
</div>
<div class="volunteer" id="volunteer">
<div class="volunteerleft">
<h1>Volunteer Now</h1>
<p class="volunteerside">We’d love to hear from you</p>
<p class="volunteerbody">
We are launching a platform for this purpose “Speak with Ease”. On
this platform, learners will register and converse with our volunteers
(you) and enhance their inter-personal communication skills. The
volunteers will be benefitted as they will be provided with badges and
they could share their contributions made in the change of life for
the kids and young adults.
</p>
<br />
<p class="voluneteerbody">
To join, you need a stable internet connection, laptop/PC with webcam
and mic, good communication skills, and enthusiasm. Enjoy badges and
appreciation letters as rewards.
</p>
</div>
<div class="volunteerright">
<form name="formhome">
<input
type="text"
placeholder="First Name"
class="inputhalf"
name="firstname"
pattern="[A-Za-z]+"
title="Enter only alphabets"
/>
<input
type="text"
placeholder="Last Name"
class="inputhalf"
name="lastname"
pattern="[A-Za-z]+"
title="Enter only alphabets"
/>
<input type="text" placeholder="Mobile Number" class="inputhalf" />
<input type="number" placeholder="Age" class="inputhalf" />
<input type="text" placeholder="Address" class="inputfull" />
<input type="text" placeholder="E-Mail" class="inputfull" />
<input type="text" placeholder="Citizen" class="inputhalf" />
<br />
<button class="volunteerbtn">Submit</button>
</form>
</div>
</div>
<div class="logosection">
<img src="images/assests/logo.png" alt="logo" />
</div>
<div class="donation" id="donation">
<div class="donationleft">
<h1>Donation</h1>
<p class="donationbody">
AD Life Trust has 12A registration under Income Tax Act, exempting it
from paying taxes on income, we also an eligible institution under 80G
for providing tax relief for donations to the AD Life.
</p>
<br />
<p class="donationbody">
Please drop an email with the details of your contribution (such as
screenshot/ transaction details) and your PAN number to enable us to
provide you a tax deductible receipt. You can email us at
<font color="#E6222b">adlife.trust@addlifegroup.com</font>
</p>
</div>
<div class="donationright">
<form>
<input type="text" placeholder="E-Mail" class="inputfull" />
<input
type="text"
placeholder="Name On Card"
class="inputfull"
pattern="[A-Za-z]+"
title="Enter only alphabets"
/>
<input type="number" placeholder="Card Number" class="inputfull" />
<input
type="text"
placeholder="Expiration date (MM/YY)"
class="inputhalf"
/>
<input type="number" placeholder="CVC" class="inputhalf" />
<select class="inputhalf" id="currency" name="Amount">
<option value="" disabled selected>Currency</option>
<option value="usd">Dollars</option>
<option value="inr">Rupees</option>
</select>
<input type="number" placeholder="Amount" class="inputhalf" />
<input type="text" placeholder="Address" class="inputfull" />
<input type="text" placeholder="State" class="inputhalf" />
<input type="text" placeholder="Country" class="inputhalf" />
<input type="text" placeholder="City" class="inputhalf" />
<input type="text" placeholder="Postal Code" class="inputhalf" />
<br />
<input type="radio" id="billing" class="radiobtn" />
<label for="billing" class="radiolabel"
>Make Shipping address the same as my billing address</label
>
<br />
<button class="donationbtn">Complete Payment</button>
<p class="qrcode">or Donate using QR Code</p>
</form>
</div>
</div>
<div class="footer" id="contact">
<div class="footerleft">
<div class="footerlefthead">
<img src="images/assests/logofooter.png" alt="logo" />
<h1>AD LIFE</h1>
</div>
<div class="footerleftside"><p>ADDING VALUE TO LIFE</p></div>
<div class="footerleftbody">
<p>
Our trust is registered under the Indian Trusts Act, 1882 with
Sub-Registrar at Kengeri, Bangalore since January 3rd, 2005.
</p>
</div>
</div>
<div class="footerright">
<div class="footerrightbody">
<div class="footerrightheader">WHO WE ARE</div>
<hr class="footerrightsplitter" />
<ul>
<a href="index.html"><li>> Homepage</li></a>
<a href="activites.html"><li>> Activities</li></a>
<a href="information.html"><li>> Information</li></a>
<a href="mentees.html"><li>> Contribute Now</li></a>
<a href="#contact"><li>> Contact</li></a>
</ul>
</div>
<div class="footerrightbody">
<div class="footerrightheader">WHERE WE WORK</div>
<hr class="footerrightsplitter" />
<ul>
<li>
<img src="images/assests/map.png" alt="map" />B-803, 10-3-163/1
Amri Central Court Apartments Old Lance Lines , Secunderabad -
500025
</li>
<li>
<img src="images/assests/phone.png" alt="phone" />+91-9505051521
</li>
<li>
<img
src="images/assests/mail.png"
alt="mail"
/>adlife.trust@addlifegroup.com
</li>
</ul>
</div>
<div class="footerrightbody">
<div class="footerrightheader">FOLLOW US</div>
<hr class="footerrightsplitter" />
<p>
For more Regular updates and event announcements. Make sure to
follow us:
</p>
<div class="socials">
<img src="images/assests/fb.png" alt="facebook" />
<img src="images/assests/insta.png" alt="instagram" />
<img src="images/assests/twitter.png" alt="twitter" />
<img src="images/assests/yt.png" alt="youtube" />
</div>
</div>
</div>
</div>
<div class="copyright">Copyright 2023 © AD Life Trust.</div>
<script src="js/script.js"></script>
</body>
</html>