-
Notifications
You must be signed in to change notification settings - Fork 1
/
Arrival.html
33 lines (30 loc) · 1.17 KB
/
Arrival.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" name="author" content="Ilovemyhouse">
<title>Arrival</title>
</head>
<body>
<h1>Welcome to the game "Who ?"</h1>
<br>
<br>
<h2>Hello!</h2>
<h2>Please note this version is the development branch of the game, so expect a rough ending, weird messages and other things, along with bugs (some of which I'm aware of).</h2>
<br>
<h2>There aren't as many levels as I hoped to have, but there's an ending. It's abrupt, but better than nothing.</h2>
<a href="Hub/HTML.html">
<button id="button" onmouseover="changeText()" onmouseout="originalText()">Start the experience.</button>
</a>
<script>
function changeText() {
document.getElementById("button").innerHTML = "Start the experience?";
}
function originalText() {
document.getElementById("button").innerHTML = "Start the experience.";
}
</script>
<br>
<b><noscript style="color: red; font-style: oblique;">This game requires JavaScript to be enabled!</noscript></b>
<footer style="position: absolute; bottom: 5px">By Ilovemyhouse - Version 0.2.0</footer>
</body>
</html>