-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-2.html
40 lines (35 loc) · 1.63 KB
/
page-2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<title>El Volcán</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js"></script>
</head>
<body>
<main>
<div class="page-2">
<div class="lanzarote-drawing-2">
<img class="background" src="images/desert.jpeg" alt="A painting of the deserted landscape on Lanzarote">
<img class="standing-bear-side" src="images/bear-6.png" alt="Polly standing and looking at you a little sadly">
</div>
<div class="text-div-2">
<div>
<p class="opening-text">Polly has decided to make her way to a nearby town.
The landscape is a little intimidating but she's very determined!
As she walks, she tries to remember a little bit about the local language.</p>
<p class="exercise-1">To intrduce herself to the locals, she would say...</p>
</div>
<div class="quiz">
<a class="correct-answer" href="page-3.html">Hola, me llamo Polly.</a>
<button class="wrong-answer" onclick="displayText()">¿Cómo te llamas?</button>
</div>
<div id="textField" style="display: none;">
That's not quite right...
</div>
</div>
</div>
</main>
</body>
</html>