-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathair.html
84 lines (82 loc) · 3.77 KB
/
air.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Life on Air</title>
<link rel="stylesheet" href="airstyle.css">
</head>
<body>
<!-- Background iframe -->
<div class="background-iframe">
<iframe src='https://my.spline.design/particlenebula-3ae084a63bc7804ee0913d2ca0f69f71/' frameborder='0' width='100%' height='100%'></iframe>
</div>
<header>
<div class="container">
<h1>Life on Air</h1>
<nav>
<ul class="nav-list">
<li><a href="index.html#earth">Earth</a></li>
<li><a href="index.html#water">Water</a></li>
<li><a href="index.html#air">Air</a></li>
<li><a href="index.html#fire">Fire</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="content-section">
<div class="info-box">
<h3>Oxygen Supply</h3>
<p>Air provides the essential oxygen needed for respiration in all aerobic organisms. This process is crucial for energy production in cells.</p>
</div>
<div class="info-box">
<h3>Climate Regulation</h3>
<p>The atmosphere helps regulate Earth's temperature by trapping heat, which maintains a stable climate suitable for life.</p>
</div>
<div class="info-box">
<h3>Weather Patterns</h3>
<p>Air movement is responsible for weather patterns and precipitation, which influence ecosystems and water availability.</p>
</div>
<div class="info-box">
<h3>Pollination</h3>
<p>Many plants rely on wind to transfer pollen from one flower to another, aiding in plant reproduction and supporting biodiversity.</p>
</div>
<div class="info-box">
<h3>Air Quality</h3>
<p>Clean air is vital for health. It helps prevent respiratory diseases and ensures that ecosystems function properly.</p>
</div>
<div class="info-box">
<h3>Carbon Dioxide Absorption</h3>
<p>Plants absorb carbon dioxide from the air during photosynthesis, which is crucial for their growth and for maintaining atmospheric balance.</p>
</div>
<div class="info-box">
<h3>Dispersal of Seeds</h3>
<p>Wind aids in the dispersal of seeds, allowing plants to spread to new areas and increase their chances of survival.</p>
</div>
<div class="info-box">
<h3>Sound Transmission</h3>
<p>Air is the medium through which sound travels, facilitating communication between animals and aiding in various ecological processes.</p>
</div>
<div class="info-box">
<h3>Cooling Mechanism</h3>
<p>Evaporation and wind help cool down surfaces, preventing overheating and maintaining a habitable environment for organisms.</p>
</div>
<!-- New Points -->
<div class="info-box">
<h3>Fresh Air for Mental Health</h3>
<p>Exposure to clean, fresh air is important for mental health and well-being, reducing stress and improving mood.</p>
</div>
<div class="info-box">
<h3>Wind Power</h3>
<p>Wind is harnessed as a renewable energy source to generate electricity, contributing to sustainable energy solutions.</p>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 Life on Air</p>
</div>
</footer>
</body>
</html>