forked from GarimaSingh0109/WasteManagment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
395 lines (340 loc) · 18.8 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
387
388
389
390
391
392
393
394
395
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Waste Management</title>
<link rel="icon" href="./assets/logo.png">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap" rel="stylesheet">
<script src="https://unpkg.com/[email protected]/dist/boxicons.js"></script>
</head>
<body>
<div id="progress-container">
<div id="progress-bar"></div>
</div>
<header>
<h1>Waste Management</h1>
<nav>
<ul>
<li><a href="#upload">Upload</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#feedback">Feedback</a></li>
<li><a href="#about">About Me</a></li>
<li><a href="register.html">Sign up</a></li>
<li><a href="#footer">Contact</a></li>
<li class="theme-switch" id="theme-switch"></li>
</ul>
</nav>
</header>
<section class="hero">
<div class="hero-content">
<h2>Efficient Waste Management</h2>
<p>Join our mission for a cleaner, greener planet.</p>
<a href="#features" class="hero-btn">Discover Features</a>
</div>
</section>
<main>
<section class="upload" id="upload">
<div class="upload-container">
<div class="upload-text">
<h2>Upload Your Files</h2>
<label for="image-input" class="custom-file-upload">
<input type="file" id="image-input" accept="image/*" hidden>
<span>Select Image</span>
</label>
</div>
<div class="upload-submit">
<button id="upload-button">Submit</button>
</div>
</div>
</section>
<main><br>
<!-- Existing sections remain unchanged -->
<section class="upload" id="upload">
<div class="upload-container">
<div class="upload-text">
<h2> Upload Your Files Here </h2><br>
<label for="image-input" class="custom-file-upload">
<input type="file" id="image-input" accept="image/*" hidden>
<span> Select Image </span>
</label>
</div>
<div class="upload-submit">
<button id="upload-button"> Submit </button>
</div>
</div>
</section>
<section class="classification">
<h2>Waste Classification</h2>
<p id="classification-result"></p>
</section>
<section class="disposal">
<h2>Disposal Information</h2>
<p id="disposal-information"></p>
</section>
<section class="classification-info" id="classification-info">
<h2>Waste Categories</h2>
<div class="card-container">
<div class="card">
<div class="card-inner">
<div class="card-front">
<span>Biodegradable Waste</span>
</div>
<div class="card-back">
<h3>Biodegradable Waste</h3>
<p>Includes food remains and garden waste. These can be composted to create manure and
naturally decompose over time.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-front">
<span>Non-Biodegradable Waste</span>
</div>
<div class="card-back">
<h3>Non-Biodegradable Waste</h3>
<p>Items like old newspapers, broken glass, and plastics. These do not decompose and are
major pollutants, but can be recycled and reused.</p>
</div>
</div>
</div>
</div>
</section>
<section class="classification-info" id="classification-info">
<h2> Waste Classification</h2>
<div class="card-container">
<div class="card">
<div class="card-inner">
<div class="card-front">
<span>Biodegradable Waste</span>
</div>
<div class="card-back">
<h3>Biodegradable Waste</h3>
<p>These wastes come from our kitchen and include food remains, garden waste, etc. They
can be composted to obtain manure and decompose over time.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-front">
<span>Non-Biodegradable Waste</span>
</div>
<div class="card-back">
<h3>Non-Biodegradable Waste</h3>
<p>This type includes old newspapers, broken glass, plastics, etc. They do not decompose
and are major pollutants but can be recycled and reused.</p>
</div>
</div>
</div>
</div>
</section>
<section class="features" id="features">
<h2>Discover Our Features</h2>
<div class="features-container">
<div class="feature-card" id="eco-friendly">
<div class="icon">
<i class="fas fa-leaf"></i>
</div>
<h3>Eco-Friendly Tips</h3>
<blockquote id="eco-fact">
Did you know <span id="fact-highlight">only 9% of all plastic ever produced has been
recycled?</span>
</blockquote>
<p>Make a difference by embracing eco-friendly practices from home. Learn tips to help manage
waste efficiently and reduce your environmental impact.</p>
<a href="ecotips.html" class="cta-button">Get Tips!</a>
</div>
</div>
<div>
<div class="feature-card1">
<div class="icon">
<i class="fas fa-chart-line"></i>
</div>
<h3>Real-time Monitoring</h3>
<p>Keep track of your waste management activities instantly, with up-to-the-minute updates.</p>
</div>
<div class="feature-card1">
<div class="icon">
<i class="fas fa-users"></i>
</div>
<h3>Community Engagement</h3>
<p>Join our community and participate in group efforts for more effective waste management and
environmental care.</p>
</div>
</div>
</section>
<section class="faqs" id="faqs">
<section class="faqs" id="faqs">
<h2>Frequently Asked Questions (FAQs)</h2>
<div class="faq-item">
<h3>What is the difference between biodegradable and non-biodegradable waste?</h3>
<p>Biodegradable waste refers to organic materials such as food scraps and garden waste that
decompose naturally over time. Non-biodegradable waste includes plastics, metals, and other
materials that do not decompose easily and require recycling or special disposal methods.
</p>
</div>
<div class="faq-item">
<h3>How can I reduce household waste?</h3>
<p>You can reduce waste by buying reusable products, composting organic waste, recycling
materials like plastic and paper, and avoiding single-use items. Participating in community
waste reduction programs is also helpful.</p>
</div>
<div class="faq-item">
<h3>What should I do with hazardous waste?</h3>
<p>Hazardous waste, such as batteries, chemicals, and electronic waste, should be taken to
designated disposal sites or collection events. Do not dispose of them in regular household
trash as they can be harmful to the environment.</p>
</div>
<div class="faq-item">
<h3>Can all plastics be recycled?</h3>
<p>No, not all plastics are recyclable. Look for recycling symbols with numbers on plastic
products. Most recycling centers accept plastics marked with numbers 1 and 2, but it's
important to check with your local center for specific guidelines.</p>
</div>
<div class="faq-item">
<h3>How do I start composting at home?</h3>
<p>To start composting, collect food scraps like fruit peels, vegetable leftovers, and coffee
grounds. Combine them with yard waste like leaves and grass clippings in a compost bin. Turn
the compost regularly to ensure proper aeration and decomposition.</p>
</div>
<div class="faq-item">
<h3>Why is it important to sort waste?</h3>
<p>Sorting waste ensures that recyclable materials like paper, glass, and plastics are properly
processed, reducing the amount of waste sent to landfills. Proper sorting helps reduce
pollution, conserve resources, and protect the environment.</p>
</div>
</section>
<section class="feedback" id="feedback">
<h2>Your Feedback</h2>
<form id="feedback-form">
<input type="text" placeholder="Your Name" required>
<textarea placeholder="Your Feedback" required></textarea>
<button type="submit">Submit</button>
</form>
</section>
<section id="about" class="about-us">
<div class="about-container">
<!-- About Us Heading -->
<div class="about-heading">
<h2>About Us</h2>
</div>
<!-- About Content -->
<div class="about-text">
<p><strong>At Waste Management</strong>, we are passionate about creating a sustainable
future through effective waste disposal solutions. Our goal is to not only reduce
environmental pollution but also <strong>educate communities</strong> and empower
individuals with sustainable waste practices.</p>
<p>By leveraging our <strong>state-of-the-art waste classification system</strong> and
encouraging community engagement, we aim to inspire everyone to adopt eco-friendly
habits. Together, we can make a significant impact in reducing waste, promoting
recycling, and preserving the environment for future generations.</p>
</div>
<!-- About Image -->
<div class="about-image">
<img src="./assets/about-us.jpg" alt="Waste Management team working towards sustainability">
</div>
<!-- Mission Section -->
<div class="mission-container">
<h3>Our Mission</h3>
<div class="mission-box">
<div class="mission-item">
<h4>Reduce Waste</h4>
<p>Minimize waste generation through innovative technologies and education.</p>
</div>
<div class="mission-item">
<h4>Promote Recycling</h4>
<p>Encourage responsible disposal and recycling practices in every community.</p>
</div>
<div class="mission-item">
<h4>Empower Communities</h4>
<p>Equip individuals with knowledge and tools for sustainable living.</p>
</div>
<div class="mission-item">
<h4>Build a Cleaner Future</h4>
<p>Protect the environment for future generations.</p>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="values-container">
<h3>Our Core Values</h3>
<div class="values-cards">
<div class="value-card">
<h4>Innovation</h4>
<p>We believe in continually evolving our waste management practices with cutting-edge
technologies to improve efficiency and reduce our environmental footprint.</p>
</div>
<div class="value-card">
<h4>Sustainability</h4>
<p>Environmental sustainability is at the heart of everything we do. We prioritize
reducing waste, reusing materials, and promoting recycling initiatives globally.</p>
</div>
<div class="value-card">
<h4>Community</h4>
<p>Collaboration is key. By working together with communities, we aim to foster
eco-consciousness and sustainable living across the globe.</p>
</div>
<div class="value-card">
<h4>Responsibility</h4>
<p>We are committed to acting with integrity and accountability, ensuring that our
practices positively impact both the environment and society.</p>
</div>
</div>
</div>
</section>
<section class="signup" id="signup">
<h2>Sign Up</h2>
<form id="signup-form">
<input type="text" placeholder="Full Name" required aria-label="Full Name">
<input type="email" placeholder="Email Address" required aria-label="Email Address">
<input type="password" placeholder="Password" required aria-label="Password">
<input type="password" placeholder="Confirm Password" required aria-label="Confirm Password">
<button type="submit">Create Account</button>
</form>
</section>
</main>
<footer id="footer">
<h2>Stay Connected</h2>
<form id="newsletter-form">
<input type="email" placeholder="Your Email" required>
<button type="submit">Subscribe</button>
</form>
<div class="social-media">
<a href="#">Facebook</a>
<a href="#">Twitter</a>
<a href="#">Instagram</a>
</div>
<div class="community-message">
<h3>Our Commitment to Sustainability</h3>
<p>At Waste Management, we are dedicated to building a greener future. Through our community recycling
programs and sustainability initiatives, we strive to reduce waste and protect the environment for
generations to come. Join us in our mission to create a cleaner, healthier planet.</p>
<a href="#">
<box-icon type="logo" name="facebook"></box-icon>
</a>
<a href="#">
<box-icon type="logo" name="twitter"></box-icon>
</a>
<a href="#">
<box-icon type="logo" name="instagram"></box-icon>
</a>
</div>
<div class="community-message">
<h3>Our Commitment to Sustainability</h3>
<p>At Waste Management, we are dedicated to building a greener future. Through our community recycling
programs and sustainability initiatives, we strive to reduce waste and protect the environment for
generations to come. Join us in our mission to create a cleaner, healthier planet.</p>
</div>
<p>© 2024 Waste Management. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</section>
</main>
<script src="script.js"></script>
</body>
</html>