-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 744 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Snakey v0.2.0</title>
<link rel="stylesheet" href="style.scss" />
</head>
<body>
<section class="content">
<h1 class="snake-title">SNAKEY</h1>
<p class="version-text">v0.2.0</p>
<div class="game-container">
<div id="game-world"></div>
<button id="restart">START</button>
</div>
<h2 id="score">0</h2>
<p>*Still testin da touch control, try swiping!</p>
</section>
</body>
<!-- We put script here so the elements above and ready before our script runs -->
<script type="module" src="src/index.ts"></script>
</html>