Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions eco_project/backend/static/education.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
/* General styles for the education page */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f4f4f4;
}

header {
background: #007BFF;
color: #fff;
padding: 1rem 0;
text-align: center;
}

main {
padding: 1rem;
margin: 0 auto;
max-width: 960px;
}

section {
background: #fff;
margin-bottom: 1rem;
padding: 1rem;
border-radius: 5px;
}

h2 {
color: #007BFF;
border-bottom: 2px solid #007BFF;
padding-bottom: 0.5rem;
}

ul {
list-style: none;
padding: 0;
}

li {
margin-bottom: 0.5rem;
}

a {
text-decoration: none;
color: #007BFF;
}

a:hover {
text-decoration: underline;
}

footer {
text-align: center;
padding: 1rem 0;
margin-top: 2rem;
background-color: #333;
color: #fff;
}

footer a {
color: #fff;
text-decoration: none;
}

footer a:hover {
text-decoration: underline;
}
38 changes: 38 additions & 0 deletions eco_project/backend/static/education.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Education</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="education.css">
</head>
<body>
<header>
<h1>Education</h1>
</header>
<main>
<section id="health-education">
<h2>Global Health and Education</h2>
<p>Explore data and insights on global health and education trends. <a href="health_education.html">Learn more</a>.</p>
</section>
<section id="climate-solutions">
<h2>Climate Change Solutions</h2>
<p>Learn about solutions to combat climate change. <a href="climate_solutions.html">Explore solutions</a>.</p>
</section>
<section id="pollution-solutions">
<h2>Environment Pollution Solutions</h2>
<p>Discover methods to combat water, air, and land pollution. <a href="pollution_solutions.html">Find solutions</a>.</p>
</section>
<section id="water-energy-solutions">
<h2>Drinking Water and Energy Access</h2>
<p>Explore solutions for providing access to clean drinking water and sustainable energy. <a href="water_energy_solutions.html">Learn more</a>.</p>
</section>
</main>
<footer>
<p><a href="index.html">Back to Home</a></p>
<p>&copy; 2025 Environment Protection Initiative</p>
</footer>
<script src="script.js"></script>
</body>
</html>
6 changes: 3 additions & 3 deletions eco_project/backend/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ <h2>Environment Pollution Solutions</h2>
<h2>Drinking Water and Energy Access</h2>
<p>Explore solutions for providing access to clean drinking water and sustainable energy for all. <a href="water_energy_solutions.html">Learn more</a>.</p>
</section>
<section id="health-education-solutions">
<h2>Global Health and Education</h2>
<p>Explore data and insights on global health and education trends from leading international organizations. <a href="health_education.html">Learn more</a>.</p>
<section id="education">
<h2>Education</h2>
<p>Explore data and insights on global health, climate change, pollution, and more. <a href="education.html">Learn more</a>.</p>
</section>
<section id="community">
<h2>Community</h2>
Expand Down
Loading