-
Notifications
You must be signed in to change notification settings - Fork 0
/
earth.html
75 lines (73 loc) · 3.35 KB
/
earth.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Life on Earth</title>
<link rel="stylesheet" href="earthstyle.css">
</head>
<body>
<!-- Background iframe -->
<div class="background-iframe">
<iframe src='https://my.spline.design/particleplanet-313edbb3fca7da61aeb30f0659b9d3e7/' frameborder='0' width='100%' height='100%'></iframe>
</div>
<header>
<div class="container">
<h1>Life on Earth</h1>
<nav>
<ul>
<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>Diverse Habitats</h3>
<p>Forests, grasslands, and deserts provide varied habitats that support numerous species. Each ecosystem offers unique resources like food and shelter.</p>
</div>
<div class="info-box">
<h3>Nutrient Cycling</h3>
<p>The decomposition of organic matter in soil helps recycle nutrients, making them available for plants. This supports plant growth and sustains herbivores.</p>
</div>
<div class="info-box">
<h3>Water Resources</h3>
<p>Land-based water sources such as rivers, lakes, and groundwater provide essential resources for all terrestrial life forms.</p>
</div>
<div class="info-box">
<h3>Climate Regulation</h3>
<p>Forests and vegetation influence local and global climate patterns by regulating temperature and precipitation.</p>
</div>
<div class="info-box">
<h3>Soil Formation</h3>
<p>Soil formation through weathering of rocks and organic matter accumulation supports plant growth and is crucial for agriculture.</p>
</div>
<div class="info-box">
<h3>Natural Habitats</h3>
<p>Natural landscapes such as mountains, valleys, and plains create diverse environments that foster different types of flora and fauna.</p>
</div>
<div class="info-box">
<h3>Pollination</h3>
<p>Various land-dwelling species, such as insects and birds, assist in pollinating plants, which is essential for the reproduction of many plant species.</p>
</div>
<div class="info-box">
<h3>Carbon Storage</h3>
<p>Forests and other terrestrial ecosystems act as carbon sinks, absorbing CO2 from the atmosphere and helping mitigate climate change.</p>
</div>
<div class="info-box">
<h3>Support for Biodiversity</h3>
<p>The varied terrains and climates of land environments support a wide range of species, contributing to the planet's overall biodiversity.</p>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 Life on Earth</p>
</div>
</footer>
</body>
</html>