-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathhome1.html
108 lines (91 loc) · 2.82 KB
/
home1.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>home page</title>
<style>
/* Basic styling for the whole page */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
img {
max-width: 100%;
height: auto;
}
/* Header styles */
header {
background-color: #0666b5;
color: #fff;
text-align: center;
padding: 50px;
}
.logo {
font-size: 24px;
text-decoration: none;
color: #fff;
}
/* Navigation bar styles */
nav {
margin-top: 50px;
}
nav a {
text-decoration: none;
color: #fff;
margin: 0 10px;
}
/* Main content styles */
.calculator {
text-align: center;
padding: 50px;
}
h1 {
font-size: 36px;
margin-bottom: 20px;
}
p {
font-size: 18px;
line-height: 1.5;
}
/* Footer styles */
footer {
background-color: #011e37;
color: #fff;
text-align: center;
padding: 20px;
}
</style>
</head>
<body background="">
<header>
<a href="#" class="logo">WELCOME</a>
<nav>
<a href="#">Our Team</a>
<a href="#">Contact</a>
</nav>
</header>
<main>
<div class="calculator">
<h1>WHAT'S YOURS WATER-FOOTPRINT</h1>
<p>Discover how much water you consume in your daily life. Use our calculator to estimate your water footprint based on your lifestyle, diet, and habits.</p>
<a href="C:\Users\hp\oops\M1.P1\login.html">
<div class="points">
<a href="#">
<p>1. What is the water footprint calculator?</p>
</a>
<a href="#">
<p>2. How to use the water footprint calculator?</p>
</a>
<a href="C:\Users\hp\oops\M1.P1\calculator.html">
<button style="font-size: 30px;background-color: #15e754;color: #032f54; border-radius: 25px;" >CALCULATOR</button>
</a>
</div>
<img src="https://tse2.mm.bing.net/th?id=OIP.-VhVlZLmK-uh0JPLgxXgjQHaEq&pid=Api&P=0&h=220" alt=" water footprint img">
</main>
<footer>
© 2024 Water Footprint Calculator | Contact: [email protected]
</footer>
</body>
</html>