-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
42 lines (41 loc) · 912 Bytes
/
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
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pikachu's Scavenger Hunt</title>
<STYLE>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
overflow: hidden;
display: grid;
place-content: center;
background: black;
}
.instructions {
margin-left: 100px;
font-family: monospace;
font-size: 16px;
color: white;
}
#game-items {
color: yellow;
}
</STYLE>
</head>
<body>
<div class="instructions">
<ul>
<li>you need to find: <span id="game-items"></span></li>
<li>enter a house to collect items</li>
<li>press i to see your inventory</li>
</ul>
</div>
<script type="module" src="game.js"></script>
</body>
</html>