-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
193 lines (184 loc) · 5.3 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Scrollytelling Website</title>
<link rel="stylesheet" href="/styles/index.css" />
<link rel="icon" href="/images/goal_15.png" />
<script src="script.js" defer></script>
</head>
<body>
<div class="portrait-message">
<p>This site is recommended to be used in landscape mode for the best experience.</p>
</div>
<section class="text">
<h1 class="text__title">Deforestation: A Global Catastrophe</h1>
<p class="text__scroll">scroll down</p>
</section>
<section class="text">
<p class="text__paragraph">The world is hurting more than ever</p>
<div class="forest">
<img
class="forest__tree"
src="/images/tree.svg"
alt="A picture of a tree"
/>
<img
class="forest__tree"
src="/images/tree.svg"
alt="A picture of a tree"
/>
<img
class="forest__tree"
src="/images/tree.svg"
alt="A picture of a tree"
/>
</div>
</section>
<section class="text">
<p class="text__paragraph">
Each year 10 million hectares of forest are
<span>destroyed</span>
</p>
<div class="bulldozer-container">
<img
class="bulldozer-container__bulldozer"
src="/images/bulldozer.svg"
alt="A picture of a bulldozer"
/>
<img
class="bulldozer-container__bulldozer"
src="/images/bulldozer.svg"
alt="A picture of a bulldozer"
/>
</div>
</section>
<section class="text">
<p class="text__paragraph">
Almost <span class="text__highlight">90%</span> of global deforestation
is due to agricultural expansion
</p>
<div class="tractor-container">
<img
class="tractor-container__tractor"
src="/images/tractor.svg"
alt="A picture of a tractor"
/>
</div>
</section>
<section class="text">
<p class="text__paragraph">
Forests cover 31% of the land area on Earth.
</p>
<div class="forest2">
<img
class="forest2__tree"
src="/images/tree.svg"
alt="A picture of a tree"
/>
<img
class="forest2__tree"
src="/images/tree.svg"
alt="A picture of a tree"
/>
<img
class="forest2__tree"
src="/images/tree.svg"
alt="A picture of a tree"
/>
<img
class="forest2__tree"
src="/images/tree.svg"
alt="A picture of a tree"
/>
<img
class="forest2__tree"
src="/images/tree.svg"
alt="A picture of a tree"
/>
<img
class="forest2__tree"
src="/images/tree.svg"
alt="A picture of a tree"
/>
<img
class="forest2__tree"
src="/images/tree.svg"
alt="A picture of a tree"
/>
<img
class="forest2__tree"
src="/images/tree.svg"
alt="A picture of a tree"
/>
<img
class="forest2__tree"
src="/images/tree.svg"
alt="A picture of a tree"
/>
<img
class="forest2__tree"
src="/images/tree.svg"
alt="A picture of a tree"
/>
<img
class="forest2__tree"
src="/images/tree.svg"
alt="A picture of a tree"
/>
<img
class="forest2__tree"
src="/images/tree.svg"
alt="A picture of a tree"
/>
<img
class="forest2__tree"
src="/images/tree.svg"
alt="A picture of a tree"
/>
<img
class="forest2__tree"
src="/images/tree.svg"
alt="A picture of a tree"
/>
</div>
<div class="smoke"></div>
<div class="smoke"></div>
<div class="smoke"></div>
<div class="smoke"></div>
<div class="smoke"></div>
<div class="smoke"></div>
<div class="fire"></div>
</section>
<section class="text">
<div class="text__fact">
<p class="text__paragraph">
Forests are home to 80% of the world's terrestrial biodiversity.
</p>
</div>
</section>
<section class="text">
<div class="text__fact">
<p class="text__paragraph">And that is worth <span>saving</span></p>
</div>
</section>
<section class="text">
<p class="text__paragraph">
But it's still not to late too make a <span>change</span>
</p>
<p class="text__paragraph">
See <a href="https://sdgs.un.org/goals/goal15">UN goal 15</a> for more
information
</p>
<div class="jungle-village">
<img class="jungle-village__hut" src="./images/house.svg" />
<img class="jungle-village__tree" src="./images/tree.svg" />
<img class="jungle-village__tree" src="./images/tree.svg" />
<img class="jungle-village__tree" src="./images/tree.svg" />
<img class="jungle-village__tree" src="./images/tree.svg" />
<img class="jungle-village__person" src="./images/person.svg" />
<img class="jungle-village__person" src="./images/person.svg" />
</div>
</section>
</body>
</html>