mirror of
https://github.com/neogeek23/neogeek23.github.io.git
synced 2026-02-04 10:58:21 +00:00
16 lines
630 B
HTML
16 lines
630 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<script src="snake.js"></script>
|
|
<link rel="stylesheet" href="snake.css">
|
|
</head>
|
|
<body>
|
|
<div class="instructions">Game is controlled via WASD. Running into the edge or youself results in death and starting over. You are the red snake, hunting the green snack causing the snake to grow. You are never able to slow down; you have no regrets, and you remain hungry.</div>
|
|
<canvas id="board"></canvas>
|
|
<div class="score_zone">
|
|
<div class="points_scored"></div>
|
|
<div class="point_rate"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|