You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Web-Dev-For-Beginners/(5.) Snake Game/index.html

33 lines
1013 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Snake Mania</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="body">
<div id="gameName">
<u>SNAKE <br> MANIA </u>
<br>
<div id="rules">
<br>
(1.)Use Arrow keys to direct <br> the snake.
<br>
(2.)Eat the food to increase snake <br> length and make high score.
<br>
(3.)Try not to bump in walls or <br>into yourself.
<br>
Have Fun !!
</div>
</div>
<div id="board">
</div>
<div id="scoreBoard">Score: 0</div>
<div id="highScoreBoard">High-Score: 0</div>
</div>
</body>
<script src="script.js"></script>
</html>