-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (35 loc) · 1.54 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css" />
<script defer src="script.js" type="module" charset="utf-8"></script>
<title>Sea Angel: Shallows</title>
</head>
<body id="daydream-mode-body">
<header class="game-header"><h1>Sea Angel: Shallows</h1></header>
<aside class="side-panel" id="left-side-panel">
<h2 class="information-headers daydream-information-headers">Game Information</h2>
<p class="game-info"></p>
</aside>
<div id="game-container-div"></div>
<aside class="side-panel" id="right-side-panel">
<h2 class="information-headers daydream-information-headers">Control</h2>
<ul class="key-instructions">
<li class="key-instructions-item">W - Move Up</li>
<li class="key-instructions-item">S- Move Down</li>
<li class="key-instructions-item">A- Move Left</li>
<li class="key-instructions-item">D - Move Right</li>
<li class="key-instructions-item">Space - Use Switch</li>
</ul>
<h2 class="information-headers daydream-information-headers">Instructions</h2>
<ul class="general-instructions">
<li class="general-instructions-item">Collect Keys to exit</li>
<li class="general-instructions-item">Use switches to open trap doors</li>
<li class="general-instructions-item">Beware of bubbles!</li>
</ul>
<button class="modebutton" id="nightmareMode">Deeper Waters</button>
</aside>
</body>
</html>