snek/index.html
Glitch (glitch-hello-website) f595088830 💫🐽 Checkpoint
./index.html:9517054/2
2022-03-04 17:47:28 +00:00

23 lines
614 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>snek</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
</head>
<body>
<canvas id="canvas" height="375" width="375"></canvas>
<br /><br />
<span id="info">welcome to snek!</span><br />
<span id="highscore"></span>
<ul>
<li>use arrow keys to move the snek</li>
<li>try to eat the apple</li>
<li>dont crash into yourself or the edges</li>
</ul>
</body>
</html>