forked from ravenrothkopf/snakeTSL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The TSL Snake Game</title>
<style>
body{
margin: 0px;
padding: 0px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<h1>Snake Synthesis</h1>
<div>
<button type="submit" style ="background-color:red; border-color:red; font-size:16px; color:white" onclick="drawGame()"">Play</button>
<button type="submit" style ="background-color:blue; border-color:blue; font-size:16px; color:white" onclick="restart()"">Restart</button>
</div>
<p>play a game of Snake that was synthesized using TSL!</p>
<br>
<br>
<canvas id="game" width="400" height="400"/>
<script src="functions.js"></script>
<script src="system.js"></script>
<script src="index.js"></script>
</body>
</html>