-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
67 lines (62 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aqua Meter</title>
<link rel="stylesheet" href="./styles/home.css">
</head>
<body>
<div class="nav">
<div class="logo">
Aqua meter
</div>
<ul class="nav-list">
<li><a href="index.html" class="nav-links">Home</a></li>
<li><a href="aboutus.html" class="nav-links">About</a></li>
<li><a href="tfa.html" class="nav-links">Save yourself</a></li>
</ul>
</div>
<section class="firstSec">
<h1>Aqua Meter</h1>
<p>
Do you know how much water it takes to produce the food you eat, the energy you use and the products you buy?
</p>
<button class="questions-btn"><a href="questions.html">Let's Know</a></button>
<div class="mousescroll">
<div class="mouse"></div>
</div>
</section>
<hr>
<section class="secondSec">
<blockquote>
Water is the most critical resource issue of our lifetime and our children’s lifetime. The health of our waters is
the principal measure of how we live on the land.
</blockquote>
<span class="person">Luna Leopold</span>
<p class="info">
Welcome to Aqua meter, a website that helps you understand how much water you use and how you can reduce your
impact on the environment. Water is a vital resource for life, but it is also scarce and unevenly distributed
around the world. Many of the goods and services we consume require a lot of water to produce, and some of them
come from places where water is already scarce or polluted.
</p>
</section>
<footer>
<div class="about">
<h2>About</h2>
<p>The water footprint is a measure of human beings' appropriation of fresh water in volumes of water consumed
and/or polluted.We aim to create a society where freshwater is fairly shared among all human communities as
well as nature’s diversity.We address the issue of water scarcity in India and promote proper utilization and
less waste of water through technology and education.</p>
</div>
<div id="links">
<h2>Quick Links</h2>
<ul class="quicklinks">
<li><a href="index.html">Home</a></li>
<li><a href="aboutus.html">About</a></li>
<li><a href="tfa.html">Save yourself</a></li>
</ul>
</div>
</footer>
</body>
</html>