generated from HackYourFutureBelgium/template-html-css
-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
79 lines (75 loc) · 2.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>All About Trees</title>
<meta name="description" content="a short introduction to trees" />
<meta name="author" content="Team HYF" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="centered-items">
<img class="bouncy-img" src="happy-tree.jpeg" alt="a smiling tree" />
<h1>All About Trees</h1>
<img class="bouncy-img" src="happy-tree.jpeg" alt="a smiling tree" />
</header>
<nav class="bottom-divider">
<div class="spaced-items">
<a href="#summary-info">intro</a>
<a href="#main-info">content</a>
<a href="#extra-info">extras</a>
</div>
</nav>
<section id="summary-info">
<p class="fascinating-words">
How do Trees Work? Well, this has been a tough question to answer.
<br />
My colleagues and I sat down last week and we spent at least 45 minutes
thinking about it. Still we have nothing smart to say.
</p>
</section>
<aside id="extra-info" class="aside-info">
<p class="aside-text">
To learn <s>everything</s> a lot more about trees,
<a href="https://en.wikipedia.org/wiki/Tree" target="_blank"
>visit this link</a
>
</p>
</aside>
<article id="main-info">
<p>
Since we didn't know what to say, we figured it was best to quote the
experts. Here you can find 3 links that taught us everything we know
about trees:
</p>
<ul class="interesting-things">
<li>
<a
href="https://i.pinimg.com/originals/f9/4a/d6/f94ad6c7c8b05d97c284f82edbb3fcd0.jpg"
target="_blank"
>a very interesting diagram</a
>
</li>
<li>
<a
href="https://treescharlotte.org/wp-content/uploads/2013/11/How-A-Tree-Works.pdf"
target="_blank"
>a very interesting article</a
>
</li>
<li>
<a href="https://www.youtube.com/watch?v=BickMFHAZR0" target="_blank"
>a very interesting video</a
>
</li>
</ul>
</article>
<!-- FOOTER START-->
<footer class="top-divider spaced-items">
<a href="#">twitter</a> <a href="#">github</a> <a href="#">linkedin</a>
</footer>
<!-- FOOTER END-->
</body>
</html>