-
Notifications
You must be signed in to change notification settings - Fork 19
/
about.html
113 lines (107 loc) · 5.12 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Charity Jet | About Us</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap-theme.min.css" integrity="sha384-6pzBo3FDv/PJ8r2KRkGHifhEocL+1X2rVCTTkUfGk7/0pbek5mMa1upzvWbrUbOZ" crossorigin="anonymous">
</head>
<body>
<!-- ----------------------------------------NAVBAR----------------------------------------------------->
<nav class="nav nav_top">
<div class="logo">
<a href="index.html"><img src="images/logo.png" width="250"></a>
</div>
<div class="nav_side">
<a href="index.html">HOME</a>
<a href="about.html">ABOUT US</a>
<a href="donate.html">DONATE</a>
<a href="contact.html">CONTACT</a>
</div>
</nav>
<!-- --------------------------------------------MAIN----------------------------------------------------------->
<div class="main_about">
<div class="main_content_about">
<h2>What We Do?</h2>
</h2>
</div>
</div>
<!-- -------------------------------------------ABOUT US--------------------------------------------------------->
<!-- --------------------------------------------HOW WE HELP--------------------------------------------------------->
<div class="product product_about">
<h2>HOW WE HELP</h2>
<div class="product_container">
<div class="item">
<div class="item_img">
<img src="images/pro1.svg">
</div>
<div class="item_content">
<h3>Pure Food & Water</h3><br>
<p>We supply needy childen with basic necessities like pure food and water</p>
<br><br><br>
</div>
</div>
<div class="item">
<div class="item_img">
<img src="images/pro2.svg">
</div>
<div class="item_content">
<h3>Health and Medicine</h3><br>
<p>Health being the foremost priority, we aim at giving children every medical support</p>
<br><br>
</div>
</div>
<div class="item">
<div class="item_img">
<img src="images/pro3.svg">
</div>
<div class="item_content">
<h3>Education</h3><br>
<p>We provide education facilities to children all over the world</p>
<br><br>
</div>
</div>
</div>
</div>
<hr>
<!-- --------------------------------------------FOOTER-------------------------------------------------------->
<footer>
<div class="pages">
<a href="index.html"><img class="aimg" src="images/logo.png" width="250"></a>
<p>Charity Jet cares for needy children by empowering their caregivers to do their best work, with compassion, grace, integrity and excellence. Our end goal is to support children worldwide and see every child reach the potential that God has for them.</p>
<a href="https://www.facebook.com/" target="_blank"><i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/" target="_blank"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-instagram" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a>
</div>
<div class="doc">
<h3>Navigation</h3>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="donate.html">Donate</a>
<a href="contact.html">Contact</a>
</div>
<div class="contact">
<h3>Contact Us</h3>
<a href="contact" target="_blank">4486 Richards Avenue, Modesto CA - 95354</a>
<a href="tel: +910000000000">200-000-0000</a>
<a href="mailto: [email protected]">[email protected]</a>
</div>
<div class="social">
<h3>Support</h3>
<p>Help us shape a better future fot children all over the world</p>
<div class="side_btn">
<a href="donate.html">JOIN US TODAY</a>
</div>
</div>
<hr>
<p>Copyright © 2021 Charity Jet. All rights reserved.</p>
</footer>
</body>
</html>