-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgameover.html
112 lines (107 loc) · 4.39 KB
/
gameover.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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="Images/icon.png">
<link href="https://fonts.googleapis.com/css2?family=Podkova:wght@800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="gameover.css">
<title>
Save the Water!
</title>
</head>
<body>
<table id="table1">
<tr>
<td id="column1">
<h1>
GAME OVER!
</h1>
</td>
<td>
</td>
</tr>
<tr>
<td>
<!-- Card Divider of Information -->
<div class="bubble">
<table>
<tr>
<td>
<p class="text1">
You lost all of your water! Cheru will have to walk back
<br> and start from the beginning 😢 <br><br>
</p>
<p class="text1">
Even though Cheru can restart, this isn't the case for over
<br> <span style="font-weight:600;">700 million people </span> who can't access clean water.
</p>
<p class="text1">
Water is a <span style="font-weight:600;">precious</span> resource that those in developed
<br> countries take for granted, but as climate change
<br> progresses and our population grows, even states such as
<br> <span style="font-weight:600;">California</span> struggle with having sufficient water. <br><br>
</p>
<p class="text1">
Conserve water, and donate towards organizations like
<br> <a href="https://generosity.org/"> Generosity.org </a> to help make sure no one else has to walk
<br> 6000m for their right to live.
</p>
</td>
<td valign="top">
<img src="Images/sigh.png" id="sigh" height="500px">
</td>
</tr>
<tr>
<td colspan="2">
<p style="margin-left:1.25%">
<table>
<tr>
<td>
<button id="CTA" onclick="window.location='game.html'">
<table>
<tr>
<td>
<img src="Images/refresh.png" height="21px" style="margin-right:10px">
</td>
<td id="replaytext">
REPLAY
</td>
</tr>
</table>
</button>
</td>
<td>
<button id="CTA2" onclick="window.location='index.html'" style="margin-left:8%">
<table>
<tr>
<td>
<img src="Images/home.png" height="23px" style="margin-right:10px">
</td>
<td id="replaytext">
HOME
</td>
</tr>
</table>
</button>
</td>
<td>
<button id="SKIP" onclick="window.location='https://thewaterproject.org/why-water/poverty'" style="width:300px">
CHERU'S STORY
</button>
</td>
<td>
<audio controls autoplay>
<source src="Sound/gameover.mp3" type="audio/mpeg">
</audio>
</td>
</tr>
</table>
</p>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</body>
</html>