-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (56 loc) · 2.07 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
<!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="shortcut icon" href="assets/icon.svg" type="image/x-icon">
<title>World Water Day | Landing page</title>
<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=Spartan:wght@500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<img class="crab" src="assets/crab.svg" alt="crab image">
<img class="left-graphic" src="assets/left-graphic.png" alt="left sea graphics">
<div class="right-side">
<img class="right-graphic" src="assets/right-graphic.png" alt="right sea graphics">
<img class="whale-illustration" src="assets/whale-illustration.svg" alt="whale illustration">
</div>
<nav class="top-navigation">
<div class="logo">
<img src="assets/icon.svg" alt="icon">
<span>waterworks</span>
</div>
<ul class="links">
<li><a href="#">Services</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<main class="main">
<div class="text">
<h1>
Protect Our
<br>
Water Buddies
</h1>
<p>
You did not inherit the Earth’s water from
<br>
your ancestors, you owe it to your future
<br>
generations ahead.
</p>
</div>
<div class="buttons">
<a href="#" class="cta">Let's Begin</a>
<a class="watch" href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" target="_blank">
<img src="assets/play.svg" alt="play button">
<span>Watch Video</span>
</a>
</div>
</main>
</body>
</html>