11 lines
240 B
HTML
11 lines
240 B
HTML
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>JSnake</title>
|
||
|
|
<link rel="Stylesheet" href="./style.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<canvas width="800" height="600" id="gameCanvas">
|
||
|
|
</body>
|
||
|
|
|
||
|
|
<script src="./script.js"></script>
|
||
|
|
</html>
|