Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Water Pollution Awareness</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #e0f7fa; color: #333; scroll-behavior: smooth; } header { background-color: #00796b; color: white; padding: 20px; text-align: center; } nav { margin: 10px 0; } nav a { margin: 0 15px; color: white; text-decoration: none; font-weight: bold; } section { padding: 20px; margin: 10px; background-color: white; border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } footer { text-align: center; padding: 15px; background-color: #00796b; color: white; position: relative; bottom: 0; width: 100%; } form { display: flex; flex-direction: column; } form input, form textarea { margin: 5px 0; padding: 12px; border: 1px solid #ccc; border-radius: 5px; } form button { background-color: #00796b; color: white; border: none; padding: 12px; border-radius: 5px; cursor: pointer; transition: background-color 0.3s; } form button:hover { background-color: #004d40; } .statistic { font-weight: bold; font-size: 1.2em; color: #00796b; } .testimonial { font-style: italic; margin: 10px 0; border-left: 4px solid #00796b; padding-left: 10px; } .resources { display: flex; flex-wrap: wrap; gap: 15px; } .resource { background-color: #f1f1f1; padding: 15px; border-radius: 5px; flex: 1 1 calc(33% - 10px); box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); } @media (max-width: 768px) { .resource { flex: 1 1 100%; } } </style> </head> <body> <header> <h1>Water Pollution Awareness</h1> <nav> <a href="#about">About</a> <a href="#causes">Causes</a> <a href="#effects">Effects</a> <a href="#solutions">Solutions</a> <a href="#resources">Resources</a> <a href="#testimonials">Testimonials</a> <a href="#contact">Contact Us</a> </nav> </header> <section id="about"> <h2>What is Water Pollution?</h2> <p>Water pollution is the contamination of water bodies by harmful substances. It poses significant risks to human health and aquatic ecosystems.</p> <div class="statistic">Over 2 billion people lack access to clean drinking water.</div> <div class="statistic">Pollution affects more than 80% of the world’s freshwater resources.</div> </section> <section id="causes"> <h2>Causes of Water Pollution</h2> <ul> <li><strong>Industrial Waste:</strong> Factories dumping chemicals into water bodies.</li> <li><strong>Agricultural Runoff:</strong> Fertilizers and pesticides washing into rivers and lakes.</li> <li><strong>Plastic Waste:</strong> Single-use plastics contaminating water sources.</li> <li><strong>Sewage Discharge:</strong> Untreated waste entering aquatic environments.</li> </ul> </section> <section id="effects"> <h2>Effects of Water Pollution</h2> <ul> <li><strong>Human Health:</strong> Contaminated water leads to diseases and health problems.</li> <li><strong>Ecosystem Damage:</strong> Aquatic life suffers due to toxic substances.</li> <li><strong>Economic Impact:</strong> Pollution affects fishing and tourism industries.</li> </ul> </section> <section id="solutions"> <h2>How We Can Help</h2> <ul> <li><strong>Reduce Plastic Use:</strong> Opt for reusable alternatives.</li> <li><strong>Participate in Clean-Up Drives:</strong> Join local efforts to clean water bodies.</li> <li><strong>Advocate for Policy Change:</strong> Contact local representatives about water protection.</li> </ul> </section> <section id="resources"> <h2>Useful Resources</h2> <div class="resources"> <div class="resource"> <h3>Environmental Protection Agency</h3> <p>Find information on water quality and pollution control.</p> </div> <div class="resource"> <h3>World Wildlife Fund</h3> <p>Learn about efforts to protect water resources globally.</p> </div> <div class="resource"> <h3>Local Clean-Up Initiatives</h3> <p>Join local efforts to clean up polluted water bodies.</p> </div> </div> </section> <section id="testimonials"> <h2>What People Are Saying</h2> <blockquote class="testimonial">"The awareness about water pollution has changed my perspective on how I use water every day." - Jane Doe</blockquote> <blockquote class="testimonial">"Our local community has come together to fight against water pollution, and it feels great!" - John Smith</blockquote> </section> <section id="contact"> <h2>Contact Us</h2> <form> <input type="text" placeholder="Your Name" required> <input type="email" placeholder="Your Email" required> <textarea placeholder="Your Message" rows="5" required></textarea> <button type="submit">Send Message</button> </form> </section> <footer> <p>© 2025 Water Pollution Awareness. All rights reserved.</p> </footer> </body> </html>
Leave a Comment