-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAboutUs.html
122 lines (107 loc) · 4.45 KB
/
AboutUs.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
<!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="styles.css">
<title>Hunger Help - About Us</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #333;
}
/* Navigation Bar Styles */
.navbar {
background-color: #4CAF50;
padding: 10px 0;
}
.container {
display: flex;
justify-content: space-between;
align-items: center;
width: 80%;
margin: 20px auto;
}
.logo {
color: white;
font-size: 24px;
font-weight: bold;
}
.nav-links {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
.nav-links li {
margin-right: 20px;
}
.nav-links a {
text-decoration: none;
color: white;
font-weight: bold;
}
/* About Us Page Styles */
.about-us-container {
max-width: 800px;
margin: 50px auto;
text-align: center;
}
.about-us-content {
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
.impact-images {
display: flex;
justify-content: space-around;
margin-top: 20px;
}
.impact-images img {
border-radius: 20px;
margin-bottom: 10px;
padding: 10px;
}
</style>
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar">
<div class="container">
<div class="logo">Hunger Help</div>
<ul class="nav-links">
<li><a href="WhatToDonate.html">Home</a></li>
<li><a href="AboutUs.html">About</a></li>
<li><a href="ContactUs.html">Contact Us</a></li>
<li><a href="Feedback.html">Rating&Feedback</a></li>
</ul>
</div>
</nav>
<!-- About Us Content -->
<div class="about-us-container">
<div class="about-us-content">
<h2>About Hunger Help</h2>
<p>Welcome to Hunger Help, a platform dedicated to making a positive impact on the world by connecting donors
with organizations to fight hunger. Our mission is to bring together those who want to make a difference
and contribute to ending hunger in our communities.</p>
</div>
<!-- Impact Images -->
<div class="impact-images">
<img src="https://cdn.givind.org/static/images/program/w1080/support-clothes-and-footwear-for-a-poor-orphan-child.jpg" alt="Donation Impact 1" width="500px" height="200px">
<img src="https://www.heavensfamilymedia.org/ot/images/myanmar-children-eating.jpg" alt="Donation Impact 2" width="500px" height="200px">
<img src="https://cimages.milaap.org/milaap/image/upload/c_fill,g_faces,h_315,w_420/v1557425178/production/images/campaign/32300/1.orphan_children_in_joyhome_orphanage_with_new_dresses_frsuwb_1557425180.jpg" alt="Donation Impact 2" width="500px" height="200px">
<img src="https://img.huffingtonpost.com/asset/58501752120000dd00eef068.jpeg?cache=Rii2vhKjh9&ops=1778_1000" alt="Donation Impact 2" width="500px" height="200px">
</div>
<div class="impact-images">
<img src="https://www.newssamachar.com/wp-content/uploads/2019/11/shutterstock-1244852419.jpg" alt="Donation Impact 1" width="500px" height="200px">
<img src="https://kettocdn.gumlet.io/media/campaign/705000/705058/image/636fa15caecbe.jpg?w=400&dpr=2.6" alt="Donation Impact 2" width="500px" height="200px">
<img src="https://eastasiaforum.org/wp-content/uploads/2023/03/2023-02-28T071524Z_1245917173_MT1SIPA0007XOTME_RTRMADP_3_SIPA-USA-scaled.jpg" alt="Donation Impact 2" width="500px" height="200px">
<img src="https://orphanlifefoundation.org/wp-content/uploads/2021/01/16-1-scaled.jpg" alt="Donation Impact 2" width="500px" height="200px">
</div>
</div>
</body>
</html>