-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
80 lines (64 loc) · 2.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Save Water</title>
<!--Fonts-->
<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=Fredoka:wght@300..700&display=swap" rel="stylesheet">
<!-- fontawesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<!--Style Sheets-->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!--Hero section-->
<section id="hero">
<div class="hero-section-container">
<header>
<a class="logo" href="#hero">Save<span>Water.</span></a> <!--Left Section-->
<nav> <!--Middle Section-->
<a class="nav-items active" href="#">Home</a>
<a class="nav-items" href="#">About</a>
<a class="nav-items" href="#">Gallery</a>
<a class="nav-items" href="#">Contacts</a>
</nav>
<button class="cta-btn">Donate</button> <!--Right Section-->
</header>
<div class="hero-content"> <!--Hero Content-->
<div class="left-section">
<div class="left-content-container">
<h3>SAVE</h3>
<h1>
<span>W</span>
<span class="color-change">A</span>
<span>T</span>
<span class="color-change">E</span>
<span>R</span>
</h1>
<p>
<span>Save Water, Secure Tomorrow!</span> Water is life, and every drop we save today protects the world
of tomorrow. Join the movement to conserve and protect our most precious resource. Together, we can build
a sustainable future where every drop counts and every effort matters.
</p>
<button class="big-cta-btn">Donate</button>
</div>
</div>
<div class="right-section">
<div class="image-wrap">
<img src="img/planet.png" alt="planet image">
</div>
</div>
</div>
<div class="social-icons">
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-youtube"></i>
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-tiktok"></i>
</div>
</div>
</section>
</body>
</html>