-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Snake JS</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
</head>
<body>
<div class="container mt-4 mb-4">
<ul class="list-inline">
<li>
<a href="https://github.com/devatrox/SnakeJS" class="badge badge-secondary">Fork me on GitHub</a>
</li>
</ul>
<div class="controls">
<div class="input-group mb-3">
<input id="username" type="text" autofocus required pattern="[\w\döäüß]+" class="form-control" placeholder="Your name">
<div class="input-group-append">
<button id="start" type="button" class="btn btn-primary">Start game</button>
</div>
</div>
</div>
<div id="game"></div>
<p>Use arrow Keys to move around</p>
</div>
<script src="https://cdn.jsdelivr.net/combine/npm/lodash@4,npm/jquery@3,npm/bootstrap@4/dist/js/bootstrap.bundle.min.js"></script>
<script type="module" src="./src/index.js"></script>
</body>
</html>