-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-3.html
42 lines (35 loc) · 1.71 KB
/
page-3.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
<!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">
</head>
<body>
<main>
<div class="page-3">
<div class="lanzarote-drawing-3">
<img class="background" src="images/houses.jpg" alt="A painting of some houses on Lanzarote">
<img class="walking-bear" src="images/bear-1.png" alt="Polly walking towards the left of the screen">
</div>
<div class="page-elements">
<div class="page-3-text">
<p class="opening-text">Yay, Polly has made it to a town!
It's still early in the morning, so not many people are around,
but a few friendly faces start looking her way.
She gets ready to order a coffee to give her some energy for the rest of her journey.</p>
<p class="exercise-2">Help Polly say: "I want to order a coffee."</p>
</div>
<div class="form-div"><form><textarea id="translation" name="translation" rows="3"></textarea></form></div>
<div class="form-button"><button id="try-it">Continue</button></div>
<div class="form-result"><p id="textField-2"></p></div>
</div>
</div>
</main>
<script src="script.js"></script>
<script>
document.getElementById("try-it").addEventListener("click", displayText2);
</script>
</body>
</html>