-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (35 loc) · 1.06 KB
/
index.html
File metadata and controls
58 lines (35 loc) · 1.06 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Index</title>
<link rel="stylesheet" href="styles.css" type="text/css">
<script src="jquery-1.10.2.min.js" type="text/javascript"></script>
<script src="script.js" type="text/javascript"></script>
</head>
<body class="index">
<div id="container">
<div class="picture">
<div id="slideOne" class="slide">
<p>
You are a weary traveller. You have wandered all night through unknown lands, pursued by a hungry pack of wolves.
</p>
<p>
As dawn approaches, you see a dark castle in the distance.
</p>
</div>
<div id="slideTwo" class="slide">
<p>
You are standing outside the castle. It is surrounded by a shark-filled moat.
</p>
<p>
Do you (a) <b>cross</b> the bridge into the castle
or (b) <i> jump into the moat?</i>
</p>
<a id="room1" class="button" href = "room1.html">cross</a>
<a id="room2" class="button" href = "room2.html">jump</a>
</div>
<div id="next" class="button">Next</div>
</div>
</div>
</body>
</html>