-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathroom1.html
58 lines (35 loc) · 1.17 KB
/
room1.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
<!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="roomOne">
<div id="container">
<div class="picture">
<div id="slideOne" class="slide">
<p>
You are standing in the castle's main hall. There is a large fire burning in the open fireplace and you approach it to warm yourself. As you do, you survey your surroundings.
</p>
</div>
<div id="slideTwo" class="slide">
<p>
At the end of the long hall, there is a closed door with light coming from underneath it.
</p>
<p>
To your left there is a winding staircase leading to the
</p>
<p>
Do you (a) <b>climb the stairs to the next floor</b>
or (b) <i> go through the door towards the light.</i>
</p>
<a id="room3" class="button" href="room3.html">Go upstairs</a>
<a id="room4" class="button" href="room4.html">Open the door</a>
</div>
<div id="next" class="button">Next</div>
</div>
</div>
</body>
</html>