Start navigation inside project
This commit is contained in:
28
index.html
Normal file
28
index.html
Normal 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>
|
Reference in New Issue
Block a user