2017-10-10 12:57:38 +00:00
|
|
|
<!DOCTYPE html>
|
2018-03-19 20:01:30 +00:00
|
|
|
<html lang="en">
|
2017-10-10 12:57:38 +00:00
|
|
|
<head>
|
2022-02-28 18:48:12 +00:00
|
|
|
<title>snek</title>
|
2022-02-28 20:07:10 +00:00
|
|
|
|
2020-10-14 18:31:47 +00:00
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2021-05-26 21:53:06 +00:00
|
|
|
|
2022-03-04 17:47:28 +00:00
|
|
|
<link rel="stylesheet" href="style.css" />
|
|
|
|
<script src="script.js" defer></script>
|
2020-10-14 18:31:47 +00:00
|
|
|
</head>
|
2017-10-10 12:57:38 +00:00
|
|
|
<body>
|
2022-02-28 18:48:12 +00:00
|
|
|
<canvas id="canvas" height="375" width="375"></canvas>
|
2022-02-28 20:07:10 +00:00
|
|
|
<br /><br />
|
2022-03-01 18:14:02 +00:00
|
|
|
<span id="info">welcome to snek!</span><br />
|
2022-03-01 18:26:02 +00:00
|
|
|
<span id="highscore"></span>
|
2022-03-01 18:14:02 +00:00
|
|
|
<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>
|
2017-10-10 12:57:38 +00:00
|
|
|
</body>
|
|
|
|
</html>
|