-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 1.07 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" />
<title>PokeGame</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/x-icon" href="assets/images/playerf.png" />
</head>
<body>
<div class="main">
<canvas id="canvas"></canvas>
<div class="controls" id="controls">
<div class="one">
<button class="arrow key Up">↑</button>
</div>
<div class="three">
<button class="arrow key Left">←</button>
<button id="enter" class="key enter">✔</button>
<button class="arrow key Right">→</button>
</div>
<div class="one">
<button class="arrow key Down">↓</button>
</div>
</div>
</div>
<div id="warning-message">
<div class="text">
This website is only viewable in landscape mode.<br />Rotate and refresh
</div>
</div>
<script type="module" src="script.js"></script>
</body>
</html>