-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 1.67 KB
/
index.html
File metadata and controls
43 lines (40 loc) · 1.67 KB
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
<!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" />
<link rel="stylesheet" type="text/css" href="/styles/styles.css" />
<title>Document</title>
</head>
<body>
<nav class="nav">
<a class="nav__link nav__link--home" href="./index.html">Home</a>
<a class="nav__link nav__link--game" href="game/game.html"
>Play the game!</a
>
</nav>
<main>
<article class="article">
<img
src="/images/Sustainable_Development_Goal_6.png"
alt="UNs sustainability development goal 6, clean water and sanitaton"
/>
<h1 class="article__title">Goal 6 of UNs Sustainability goals.</h1>
<p class="article__text">
Goal 6 of the UN's Sustainable Development Goals aims to ensure
availability and sustainable management of water and sanitation for
all. One of the key targets under this goal is to prevent and
significantly reduce marine pollution of all kinds, including by
nutrient pollution and marine debris. This is important for the
preservation of sea creatures, as they can be greatly impacted by
water pollution. Marine pollution can harm sea creatures directly,
through ingestion of or entanglement in debris, or indirectly through
the contamination of the food chain. Therefore, achieving Goal 6 can
play a crucial role in ensuring the health and wellbeing of sea
creatures and their ecosystems.
</p>
</article>
</main>
</body>
</html>