-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
331 lines (299 loc) · 8.05 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About HELP</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
min-height: 100vh;
background-image: url(bac.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* Navbar */
nav{
background-color: #ffffffd0;
box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}
nav ul {
width: 100%;
list-style-type: none;
display: flex;
justify-content: flex-end;
align-items: center;
}
nav li {
height: 50px;
}
nav a {
height: 100%;
padding: 0 30px ;
text-decoration: none;
display: flex;
align-items: center;
color: black;
}
nav a:hover{
background-color: #f0f0f0;
}
nav li:first-child{
margin-right: auto;
}
.sidebar{
position: fixed;
top: 0;
right: 0;
height: 100vh;
width: 250px;
z-index: 999;
background-color: #ffffff34;
box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
display: none;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
backdrop-filter: blur(10px);
}
#Menu{
display: none;
}
.sidebar li {
width: 100%;
}
.sidebar a {
width: 100%;
}
@media(max-width:600px){
#Menu{
display: flex;
}
.hideOnMobile{
display: none;
}
}
/* Main Heading */
h1 {
color: #ffa726;
font-size: 1.8em;
letter-spacing: 0.025em;
text-transform: uppercase;
text-align: center;
margin-top: 30px;
padding: 10px;
}
/* Background image with overlay */
/* Flex container for text and images */
.objects {
display: flex;
flex-direction: row;
gap: 20px;
padding: 30px;
flex-wrap: wrap;
}
/* Div cards with hover effect */
.content-left {
flex: 1 1 300px;
padding-right: 20px;
}
.divbg {
background-color: rgba(139, 119, 179, 0.473);
backdrop-filter: blur(5px);
padding: 30px;
border-radius: 15px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
margin-bottom: 20px;
transition: transform 0.3s, background-color 0.3s;
}
.divbg:hover {
transform: translateY(-10px);
background-color: rgba(248, 248, 255, 0.562);
h2{
color:#ff8800;
}
}
h2 {
color: #ffcc80;
margin-bottom: 10px;
}
p {
/* color: #b0bec5; */
color: black;
line-height: 1.6;
}
/* Images on the Right */
.images-right {
flex: 1 1 300px;
display: flex;
flex-direction: column;
gap: 20px;
}
.images-right img {
border-radius: 10px;
width: 100%;
height: 250px;
max-width: 400px;
transition: transform 0.3s, filter 0.3s;
}
.images-right img:hover {
transform: scale(1.05);
filter: brightness(1.2);
}
/* Footer */
footer{
display: grid;
position: absolute;
margin-top: 5%;
height: 50vh;
width: 100vw;
background-color: rgb(242, 225, 139);
}
footer img{
height: 200px;
width: 550px;
margin-left: -40PX;
}
footer .logo .logo-text{
font-size: 20px;
}
footer .logo{
display: grid;
place-items: center;
place-content: center;
place-self: start;
height: fit-content;
width: fit-content;
}
footer .buttons{
display: grid;
place-self: center;
align-self: center;
justify-self: center;
height: fit-content;
width: fit-content ;
margin-left: -300px;
align-content: center;
margin-bottom: 400px;
margin-top: -150px;
}
.buttons ul li{
list-style-type: none;
line-height: 2.5;
color: black;
}
.buttons a {
color: black;
text-decoration: none;
font-size: 20px;
}
/* Responsive Styles */
@media (max-width: 768px) {
.objects {
flex-direction: column;
align-items: center;
}
.content-left, .images-right {
width: 100%;
}
}
</style>
</head>
<body>
<!-- Navbar -->
<nav>
<ul class="sidebar">
<li onclick=hideSidebar()><a href="#"><img width="26" height="26" src="https://img.icons8.com/ios-glyphs/30/1A1A1A/multiply.png" alt="multiply"/></a></li>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contactmain.html">Contact</a></li>
<li><a href="features.html">Features</a></li>
</ul>
<ul>
<li><a href="#">HelpMe</a></li>
<li class="hideOnMobile"><a href="index.html">Home</a></li>
<li class="hideOnMobile"><a href="about.html">About</a></li>
<li class="hideOnMobile"><a href="contactmain.html">Contact</a></li>
<li class="hideOnMobile"><a href="features.html">Features</a></li>
<li onclick=showSidebar() id="Menu"><a href="#"><img width="26" height="26" src="https://img.icons8.com/ios-filled/50/1A1A1A/menu--v6.png" alt="menu--v6"/></a></li>
</ul>
</nav>
<!-- Background Image and Main Heading -->
<div class="fstpanel">
<h1>Empowering Communities To Advance Social Change Through Accessible Technology Solutions</h1>
</div>
<!-- Main Content Sections -->
<div class="objects">
<!-- Text Sections on the Left -->
<div class="content-left">
<div class="divbg">
<h2>Introduction:</h2>
<p>Welcome to [HELP], a revolutionary platform connecting citizens with municipal corporations to address local issues efficiently...</p>
</div>
<div class="divbg">
<h2>Our Vision:</h2>
<p>A nation where every community thrives, and every citizen's voice is heard...</p>
</div>
<div class="divbg">
<h2>Our Objectives:</h2>
<p>1. Provide a user-friendly platform for citizens to report municipal-related issues...</p>
</div>
<div class="divbg">
<h2>How We Work:</h2>
<p>1. Citizens report issues through our Deployment form...</p>
</div>
<div class="divbg">
<h2>Our Values:</h2>
<p>1. Citizen-centric approach<br>2. Transparency and accountability...</p>
</div>
<h2>Meet Our Team:</h2>
</div>
<!-- Images on the Right -->
<div class="images-right">
<img src="360_F_598856174_OjkYL8BbXuYxRmHrV37SOUabxeJxQucq.jpg" alt="Image 1" />
<img src="istockphoto-1093177328-612x612.jpg" alt="Image 2" />
<img src="images2.jpg" alt="Image 3" />
</div>
</div>
<!-- Footer -->
<footer>
<div class="logo">
<img src="HelpME-removebg-preview.png" alt="">
<div class="logo-text">
<i class="fa-regular fa-copyright"></i> Copyright <i class="fa-regular fa-registered"></i> Registered
</div>
</div>
<div class="buttons">
<ul>
<li class="footer-buttons"><a href="#">Home</a></li>
<li class="footer-buttons"><a href="#">Blog</a></li>
<li class="footer-buttons"><a href="#">Credits</a></li>
<li class="footer-buttons"><a href="#">Who We Are ?</a></li>
<li class="footer-buttons"><a href="#">Meet !</a></li>
<li class="footer-buttons"><a href="#">Our Works</a></li>
<li class="footer-buttons"><a href="faq.html">FAQ</a></li>
</ul>
</div>
</footer>
<script>
function showSidebar() {
const sidebar = document.querySelector(".sidebar");
sidebar.style.display = "flex"
}
function hideSidebar() {
const sidebar = document.querySelector(".sidebar");
sidebar.style.display = "none"
}
</script>
</body>
</html>