-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnews.html
65 lines (56 loc) · 2.22 KB
/
news.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Green Titan | News</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css">
<link rel="icon" type="image/png" href="images/green-titan--favicon.png">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<!--font awesome-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer" />
<!--Google font-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap"
rel="stylesheet" />
<!--css style-->
<link rel="stylesheet" href="styleNew.css"/>
<link rel="stylesheet" href="styleN.css"/>
</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 href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a class="active" href="#">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-->
<!-- main -->
<body>
<!-- and ends here -->
<h4 style="text-align: center; color: red; font-size: 2rem;">What the news are saying about climate change</h4>
<div class="news-grid" id="news-grid">
<!-- News articles will be displayed here -->
<script src="./news_script.js"></script>
</div>
</body>
</body>
</html>