-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (28 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Snake</title>
<style>
#snake {
border: 1px solid;
min-width: 800px;
width: 800px;
min-height: 600px;
height: 600px;
}
</style>
</head>
<body>
<div class="container d-flex flex-column align-items-center">
<div id="snake"></div>
<p id="snake-status" class="text-monospace">Loading...</p>
</div>
<script src="out/snake.js" type="text/javascript"></script>
<script> snake.core.main() </script>
</body>
</html>