-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathending.html
42 lines (21 loc) · 1.06 KB
/
ending.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 charset="utf-8" />
<title>Stolen Memories</title>
<link rel="stylesheet" href="css/main.css" />
</head>
<body = id= "bg_ending">
<div id="containerend">
<h1> Congratulations, you did it! </h1>
<img src="images/endinggif.gif" width="400" alt="final picture of the avatar and his friend" class=center />
<p>After defeating the fire lord you and your best friend reunite and they tell you how telekinesis forbids them from speaking for longer than 10 seconds and that they are only allowed to speak in rhymes. It also appears that the fire lord cast a spell on you to lose all your memories and tried to get you as far from the fire nation borders as possible. Luckily, the spell was broken because Appa's uniqueness triggered your memory and your best friend helped guide you. You celebrate your victory and fly away together on Appa. </p>
<a href='game_synopsis.html'> <button onclick="restart()">FINISH</button> </a>
</div>
</body>
<script>
function restart () {
sessionStorage.clear();
}
</script>
</html>