-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (26 loc) · 809 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (26 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<title>Play snake game.</title>
<link rel="stylesheet" href="snakeStyle.css">
</head>
<link rel='icon' type="image/gif" href="">
<body>
<h1> Snake Game</hi>
<center>
<div class='body'>
<div id='score'>
</div>
<button id="start" style="border:1px solid black">start</button>
<div id="playArea" style="position:absolute">
<canvas id='playArea' width='450' height='300' style="margin-left:500px" >Sorry your browser does not support
HTML5 </canvas>
</div>
<div id="gameover" style="color:black;position:absolute;visibility:hidden;margin-left:550px;margin-top:100px">
GAME OVER
</div>
<script type='text/javascript' src='Snake.js'></script>
</div>
</center>
</body>
</html>