-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
86 lines (79 loc) · 3.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Green Titan | Home</title>
<link rel="stylesheet" href="styleNew.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
<link rel="icon" type="image/png" href="images/green-titan--favicon.png">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
</head>
<body>
<header>
<nav>
<input type="checkbox" id="check">
<label for="check" class="checkbtn">
<i class="fa-solid fa-bars"></i>
</label>
<img src="images/green-titan-logo.png" alt="logo">
<ul>
<li> <a class="active" href="#">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="news.html">Climate News</a></li>
<li><a href="carboncalc.html">Carbon Calculator</a></li>
<li><a href="getinvolved.html">Get Involved</a></li>
</ul>
</nav>
</header>
<main>
<section id="hero">
<!--<img src="images/hero.jpg" alt="Climate change">-->
<h2>What is climate change?</h2>
<p>Climate change is a long-term shift in global or regional climate
patterns. Climate change may cause weather patterns to be less
predictable. A region might experience lower or higher than average
temperatures. Climate change may cause more frequent and severe
weather events, such as storms, floods, and droughts.</p>
</section>
<section id="impacts">
<h2>The impacts of climate change</h2>
<ul>
<li>Rising sea levels</li>
<li>More extreme weather events</li>
<li>Changes in agricultural yields</li>
<li>Loss of biodiversity</li>
<li>Impacts on human health</li>
</ul>
</section>
<section id="solutions">
<h2>Solutions to climate change</h2>
<ul>
<li>Reduce greenhouse gas emissions</li>
<li>Invest in renewable energy</li>
<li>Improve energy efficiency</li>
<li>Protect forests</li>
<li>Adapt to the impacts of climate change</li>
</ul>
</section>
</main>
<!--<footer>
<div class="footer-content">
<h3>Green Titan Educator</h3>
<p>enhancing the branding and recognition of your website.</p>
<ul class="socials">
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-linkedin"></i></a></li>
<li><a href="#"><i class="fab fa-youtube"></i></a></li>
</ul>
</div>
<div class="footer-bottom">
<p>copyright ©2023 Green Titan Educator</p>
</div>
</footer>-->
<script src="/js/script.js"></script>
<script src="calc.py"></script>
</body>
</html>