Start navigation inside project

This commit is contained in:
2020-03-23 14:09:28 +01:00
parent a6952b8dda
commit 6147311aaa
5 changed files with 142 additions and 0 deletions

28
index.html Normal file
View File

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Snake</title>
</head>
<body>
<div id="startScreen">
<h1>My Snake</h1>
Please choose a level:
<ul id="levelChoice"></ul>
<input type="submit" id="startGameBtn" value="Start game">
</div>
<div id="gameScreen">
<h1>Game</h1>
<input type="button" id="stopGameBtn" value="Stop game">
</div>
<script src="script.js"></script>
</body>
</html>