-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwind.html
More file actions
80 lines (75 loc) · 2.39 KB
/
wind.html
File metadata and controls
80 lines (75 loc) · 2.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Wind Energy</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header><h1>Wind Energy</h1></header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="tutorials.html">Tutorials</a></li>
</ul>
</nav>
<section class="section">
<div class="text-container">
<h2>What is Wind Energy?</h2>
<p>
Wind energy is the process of converting wind currents into mechanical
power or electricity using wind turbines. It is one of the
fastest-growing renewable energy sources, providing clean and
sustainable power.
</p>
<h2>How Does Wind Energy Work?</h2>
<ul>
<li>
Wind turbines have large blades that capture the kinetic energy of
the wind.
</li>
<li>
The movement of the blades turns a rotor connected to a generator.
</li>
<li>
The generator converts the rotational energy into electrical energy.
</li>
<li>
The electricity is then transmitted to homes and businesses through
power grids.
</li>
</ul>
<h2>Benefits of Wind Energy</h2>
<ul>
<li>
<b>Renewable:</b> Wind energy is naturally replenished and
inexhaustible.
</li>
<li>
<b>Clean Energy:</b> It does not produce greenhouse gases or
pollution.
</li>
<li>
<b>Cost-effective:</b> Once installed, wind farms have low
operational costs.
</li>
<li>
<b>Land-efficient:</b> Wind turbines can coexist with agricultural
lands.
</li>
</ul>
<h2>Applications of Wind Energy</h2>
<ul>
<li>Generating electricity for homes and industries</li>
<li>Pumping water in rural areas</li>
<li>Supporting hybrid renewable energy systems</li>
<li>Providing power in remote areas</li>
</ul>
<div class="quiz-button">
<a href="wind-quiz.html" class="btn">Take the Wind Quiz</a>
</div>
<a href="chatbot.html" class="chatbot-button">Ask Ecowatt AI 🤖</a>
</div>
</section>
</body>
</html>