Show sourcecode
The following files exists in this folder. Click to view.
public_html/gamla-kurser/webbutv2/projekt/snake/
E/
css/
js/
snake.html
snake.sync-conflict-20250925-184035-H7ZHIM2.html
snake.zip
snake.sync-conflict-20250925-184035-H7ZHIM2.html
22 lines ASCII Windows (CRLF)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JavaScript Snake</title>
<link rel="stylesheet" href="./css/snake.css">
</head>
<body>
<h2>JavaScript Snake</h2>
<h4 id="levelText">Current level: Forest</h4>
<canvas id="board"></canvas>
<button id="startButton">Start</button>
<div id="scoreBoard">
<h4>Highscore:</h4>
<h3>SCORE HERE</h3>
</div>
<script src="./js/snake.js"></script>
</body>
</html>