-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcomePage.html
70 lines (68 loc) · 2.38 KB
/
welcomePage.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome: It's My House</title>
</head>
<body>
<nav>
<ul>
<li> <a href = "welcomePage.html"> Starting Menu </a> </li>
<li> <a href = "gameindex.html"> Enter Game </a> </li>
<li> <a href = "https://github.com/akullyot/BrowserGame-ItsMyHouse/blob/main/README.md"> GitHub Repository Link </a></li>
</ul>
</nav>
<main>
<section id="gamePremise">
<h2> You refused to leave your house once it foreclosed. Now you'll do anything to get your house back, including living in the walls and convincing the current residents that the house is haunted. </h2>
<button> Enter Game </button>
</section>
<section id = "gameInstructions">
<h2> Player Movement </h2>
<ul>
<li>
<div> W or Arrow Up : </div>
<div> Move Player Up </div>
</li>
<li>
<div> A or Arrow Left : </div>
<div> Move Player Up </div>
</li>
<li>
<div> S or Arrow Down : </div>
<div> Move Player Down </div>
</li>
<li>
<div> D or Arrow Right: </div>
<div> Move Sprite Right </div>
</li>
<li>
<div> Q: </div>
<div> Enter and Exit Through Paintings or Change Floors </div>
</li>
<li>
<div> E: </div>
<div> Interact With Furniture </div>
</li>
<li>
<div> R: </div>
<div> Drag and Drop Items </div>
</li>
<li>
<div> Z: </div>
<div> Interact with Special Items </div>
</li>
</ul>
<ul>
<li> Click the buttons in the text area to progress in quest dialog, or to add items to the inventory </li>
</ul>
</section>
</main>
<footer>
<section id = "attributions">
<section id = "audio">
</section>
</section>
</footer>
</body>
</html>