-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
386 lines (358 loc) · 11 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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>EchoFix: Community Solutions</title>
<!-- Bootstrap CSS -->
<link
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
<style>
body,
html {
height: 100%;
margin: 0;
}
.bg-image {
background-image: url("./covernew.jpg");
background-size: cover;
background-position: center;
height: 100vh;
position: relative;
}
.overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(
0,
0,
0,
0.5
); /* Black overlay with 50% opacity */
}
.content {
position: relative;
z-index: 1;
color: white;
text-align: center;
padding: 20px;
display: flex;
flex-direction: column;
justify-content: center;
height: 100%;
}
h1 {
color: #fff;
font-size: 6.5rem;
}
.btn-primary {
margin-top: 20px;
padding: 10px 20px;
font-size: 1.15rem;
background-color: #386641;
border-color: #fff;
}
.btn-primary:hover {
background-color: #2a442f;
border-color: #dfdfdf;
}
.btn-secondary {
color: black;
background-color: #fff;
border-color: #1d3a23;
margin-top: 20px;
padding: 10px 20px;
font-size: 1.15rem;
}
.bg-light {
background-color: #f8f9fa;
}
.text-primary {
color: #386641 !important;
}
.bg-primary {
background-color: #386641 !important;
}
.card {
border: none;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
}
#how-it-works .rounded-circle {
transition: transform 0.3s ease;
}
#how-it-works .rounded-circle:hover {
transform: scale(1.1);
}
/* Call to Action Section */
#cta {
position: relative;
background-image: url("./covernew.jpg");
background-size: cover;
background-position: center;
color: white;
}
#cta::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.6);
}
#cta .container {
position: relative;
z-index: 1;
}
#cta .btn-light {
color: #386641;
font-weight: bold;
}
#cta .btn-outline-light:hover {
color: #386641;
}
/* Features */
#features .card {
height: 100%;
}
#features .card-body {
display: flex;
flex-direction: column;
justify-content: space-between;
}
/* Footer Styles */
footer {
background-color: #1e3723;
}
footer h5 {
color: #a7c957;
font-weight: bold;
margin-bottom: 1.5rem;
}
footer a {
color: #f2e8cf !important;
transition: color 0.3s ease;
}
footer a:hover {
color: #a7c957 !important;
text-decoration: none;
}
footer .list-inline-item {
margin-right: 1rem;
}
footer hr {
border-color: #a7c957;
}
/* Hover effects for social icons */
footer .fab {
transition: transform 0.3s ease;
}
footer .fab:hover {
transform: scale(1.2);
}
/* Team member names */
footer ul li {
margin-bottom: 0.5rem;
}
</style>
</head>
<body>
<div class="bg-image">
<div class="overlay"></div>
<div class="content">
<h1>Welcome to EcoFix</h1>
<p>
Report your local issues online and actively participate in making
your environment a better place .
</p>
<div class="d-flex justify-content-center">
<a href="submit.html" class="btn btn-primary mx-2">Submit Issue</a>
<a href="#features" class="btn btn-secondary mx-2">Learn More</a>
</div>
</div>
</div>
<!-- Features Section -->
<section id="features" class="py-5 bg-light">
<div class="container">
<h2 class="text-center mb-5">Features</h2>
<div class="row">
<div class="col-md-3 mb-4">
<div class="card h-100">
<div class="card-body text-center">
<i class="fas fa-map-marker-alt fa-3x mb-3 text-primary"></i>
<h5 class="card-title">Geolocation</h5>
<p class="card-text">
Automatically detect your location for accurate reporting.
</p>
</div>
</div>
</div>
<div class="col-md-3 mb-4">
<div class="card h-100">
<div class="card-body text-center">
<i class="fas fa-camera fa-3x mb-3 text-primary"></i>
<h5 class="card-title">Photo Upload</h5>
<p class="card-text">
Attach images to your reports for better understanding.
</p>
</div>
</div>
</div>
<div class="col-md-3 mb-4">
<div class="card h-100">
<div class="card-body text-center">
<i class="fas fa-chart-line fa-3x mb-3 text-primary"></i>
<h5 class="card-title">Issue Tracking</h5>
<p class="card-text">
Follow the progress of reported issues in real-time.
</p>
</div>
</div>
</div>
<div class="col-md-3 mb-4">
<div class="card h-100">
<div class="card-body text-center">
<i class="fas fa-trophy fa-3x mb-3 text-primary"></i>
<h5 class="card-title">Leaderboard</h5>
<p class="card-text">
Recognize top contributors and encourage community engagement.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Call to Action Section -->
<section id="cta" class="py-5 bg-image-overlay">
<div class="container text-center">
<h2 class="mb-4">Ready to make a difference in your community?</h2>
<p class="lead mb-4">
Join EcoFix today and start reporting issues that matter!
</p>
<a href="index.html" class="btn btn-light btn-lg mr-3"
>Report an Issue</a
>
<a href="#" class="btn btn-outline-light btn-lg">Learn More</a>
</div>
</section>
<!-- How It Works Section -->
<section id="how-it-works" class="py-5">
<div class="container">
<h2 class="text-center mb-5">How It Works</h2>
<div class="row">
<div class="col-md-4 text-center mb-4">
<div
class="rounded-circle bg-primary text-white d-inline-flex justify-content-center align-items-center mb-3"
style="width: 80px; height: 80px"
>
<h3>1</h3>
</div>
<h4>Report an Issue</h4>
<p>Submit details about the environmental issue you've noticed.</p>
</div>
<div class="col-md-4 text-center mb-4">
<div
class="rounded-circle bg-primary text-white d-inline-flex justify-content-center align-items-center mb-3"
style="width: 80px; height: 80px"
>
<h3>2</h3>
</div>
<h4>We Notify Authorities</h4>
<p>
Our system alerts the relevant local authorities about the issue.
</p>
</div>
<div class="col-md-4 text-center mb-4">
<div
class="rounded-circle bg-primary text-white d-inline-flex justify-content-center align-items-center mb-3"
style="width: 80px; height: 80px"
>
<h3>3</h3>
</div>
<h4>Track Progress</h4>
<p>Follow the status updates as the issue gets resolved.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark text-light py-5">
<div class="container">
<div class="row">
<div class="col-md-3 mb-4 mb-md-0">
<h5>About EcoFix</h5>
<p>
EcoFix is a community-driven platform empowering citizens to
report and track local environmental issues, fostering
collaboration between residents and authorities for a cleaner,
safer environment.
</p>
</div>
<div class="col-md-3 mb-4 mb-md-0">
<h5>Quick Links</h5>
<ul class="list-unstyled">
<li><a href="index.html" class="text-light">Home</a></li>
<li>
<a href="submit.html" class="text-light">Report an Issue</a>
</li>
<li><a href="#" class="text-light">View Issues</a></li>
<li><a href="#" class="text-light">Contact Us</a></li>
</ul>
</div>
<div class="col-md-3 mb-4 mb-md-0">
<h5>Our Team</h5>
<ul class="list-unstyled">
<li>Atharva Salitri</li>
<li>Shrey Rupnavar</li>
<li>Tanishq Thuse</li>
<li>Anjali Shivshete</li>
</ul>
</div>
<div class="col-md-3">
<h5>Connect With Us</h5>
<ul class="list-inline">
<li class="list-inline-item">
<a href="#" class="text-light"
><i class="fab fa-facebook fa-2x"></i
></a>
</li>
<li class="list-inline-item">
<a href="#" class="text-light"
><i class="fab fa-twitter fa-2x"></i
></a>
</li>
<li class="list-inline-item">
<a href="#" class="text-light"
><i class="fab fa-instagram fa-2x"></i
></a>
</li>
</ul>
<p>Email: [email protected]<br />Phone: (123) 456-7890</p>
</div>
</div>
<hr class="bg-light" />
<div class="text-center mt-4">
<p>© 2024 EcoFix. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Bootstrap JS and dependencies (optional) -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>