forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (88 loc) · 3.2 KB
/
index.html
File metadata and controls
109 lines (88 loc) · 3.2 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
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
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>They Need Water To Survive</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<header>
<h1>
Water for human
</h1>
<h4>
It is an Organisation which stablished on 2025. The member of this organization try to store money and provide a
permenet method to get underground water by healthy way to poor people who are not supported by Goverment of their country.
</h4>
<hr>
<nav>
<ul>
<li><a href="#">About us</a></li>
<li><a href="#">Solutions</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
</header>
<main>
<div>
<article>
<h2>
Water is the way
</h2>
<p>
We believe water is the best investment the world can make to improve health, empower women, enable access to education, increase family
income and change lives. Yet, 771 million people lack access to safe water.
We’re working to change this. Water.org is a global nonprofit organization working to bring water and sanitation to the world.
<a href="#">more info</a>
</p>
</article>
</div>
<div>
<article>
<h2>
There's a smart way to end the water crisis
</h2>
<p>
For millions around the world, access to funds stands between them and safe water and sanitation in their homes.
That’s where Water.org comes in. Water.org offers smart solutions that break down the financial barriers between
people living in poverty and access to safe water and sanitation.
Our solutions are working! Today more than 50 million people around the world can turn on a tap or safely use a toilet
because small, affordable loans empowered them to get access to safe water and sanitation at home.
<a href="#">more info</a>
</p>
</article>
</div>
<div>
<article>
<h2>
Your donation is a powerful catalyst
</h2>
<p>
Together with our 149 partners around the world, we’ve helped mobilize more than $3.8 billion in capital to support small
loans that bring access to safe water and sanitation to millions of people in need.
By supporting Water.org, you are part of a solution that reaches more people, faster and more efficiently.
<a href="#">more info</a>
</p>
</article>
</div>
</main>
<footer>
<h2> The ways you can contact us </h2>
<img src="img/Twitter.png" alt="twitter">
<img src="img/facebook.png" alt="facebook">
<img src="img/instagram.png" alt="Instagram">
</footer>
</body>
</html>