generated from HackYourFutureBelgium/template-html-css
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
95 lines (89 loc) · 3.46 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./client/assets/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>All about Trees</title>
<link href="./styles/index.css" rel="stylesheet" />
</head>
<body>
<!--header assign to elnura-->
<header class="centered-items">
<img
class="header-img"
src="./images/happy-tree.jpeg"
alt="a smiling tree"
/>
<h1 class="tree">All About Trees</h1>
<img
class="header-img"
src="./images/happy-tree.jpeg"
alt="a smiling tree"
/>
</header>
<!--navigation bar assign to Galal-->
<nav class="nav-bar">
<div class="items">
<a href="" class="nav-a">Home</a>
<a href="" class="nav-a">About</a>
<a href="" class="nav-a">Contact</a>
</div>
</nav>
<!--Start of main info assignee: Bibha-->
<div class="main">
<p>
In botany, a tree is a perennial plant with an elongated stem, or
trunk,usually supporting branches and leaves. In some usages, the
definition of a tree may be narrower, including only woody plants with
secondary growth, plants that are usable as lumber or plants above a
specified height. In wider definitions, the taller palms, tree ferns,
bananas, and bamboos are also trees. Trees are not a taxonomic group but
include a variety of plant species that have independently evolved a
trunk and branches as a way to tower above other plants to compete for
sunlight. The majority of tree species are angiosperms or hardwoods; of
the rest, many are gymnosperms or softwoods. Trees tend to be
long-lived, some reaching several thousand years old. Trees have been in
existence for 370 million years. It is estimated that there are some
three trillion mature trees in the world.
</p>
<p>
A tree typically has many secondary branches supported clear of the
ground by the trunk. This trunk typically contains woody tissue for
strength, and vascular tissue to carry materials from one part of the
tree to another. For most trees it is surrounded by a layer of bark
which serves as a protective barrier. Below the ground, the roots branch
and spread out widely; they serve to anchor the tree and extract
moisture and nutrients from the soil. Above ground, the branches divide
into smaller branches and shoots. The shoots typically bear leaves,
which capture light energy and convert it into sugars by photosynthesis,
providing the food for the tree's growth and development.
</p>
<h4>See Also</h4>
<ul>
<li>
<a href="https://en.wikipedia.org/wiki/Tree_planting"
>Plantation of Tree</a
>
</li>
<li>
<a href="https://en.wikipedia.org/wiki/Exploding_tree"
>Exploding tree</a
>
</li>
<li>
<a href="https://en.wikipedia.org/wiki/Fruit_tree">Fruit tree</a>
</li>
<li>
<a href="https://en.wikipedia.org/wiki/Lists_of_trees"
>Lists of trees</a
>
</li>
</ul>
</div>
<!--Footer assign Valeriya-->
<footer class="foot">
<a href="">twitter</a> <a href="">github</a> <a href="">linkedin</a>
</footer>
</body>
</html>