-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 903 Bytes
/
Copy pathindex.html
File metadata and controls
31 lines (31 loc) · 903 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PLATFORMER 00</title>
<link rel="stylesheet" type="text/css" href="styles.css" media="screen">
<link href="https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<div id="polaroid">
<h1>PLATFORMER 00</h1>
<canvas id="canvas"></canvas>
<div id="polaroid-footer">
<div class="button" id="retry">
<h2 >RETRY</h2>
</div>
<div class="button" id="new-level">
<h2 >NEW LEVEL</h2>
</div>
</div>
</div>
<ul>
<li>Move: L/R arrow keys </li>
<li>Jump: Up arrow key</li>
<li>Jump through <span>the goal</span> to win!</li>
</ul>
</body>
<script src="script.js"></script>
</html>