-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (56 loc) · 2.35 KB
/
index.html
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Snake Game from Scratch</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="canvas-container">
<a name="home"></a>
<header class="name">
<img src="images/logo.png" alt="logo" class="logo">
<div class="textbox">HUNGRY SNAKE</div>
</header>
<hr></hr>
<canvas id="canvas"></canvas>
<a href="#" id="start" class="start btn">PLAY</a>
<a href="#" id="autoplay" class="auto btn">Autonomous Play</a>
<a href="#" id="mazeM" class="maze btn">Play with Maze</a>
<div id="disScore" class="score-display"></div>
<a id="clickSpeed" href="#" class="speed-btn"> Speed</a>
<ul id="dropdown">
<li><a href="#" id="speed1">0.25x</a> </li>
<li> <a href="#" id="speed2">0.50x</a> </li>
<li><a href="#" id="speed3">0.75x</a> </li>
<li> <a href="#" id="speed4">Normal</a> </li>
<li> <a href="#" id="speed5">1.25x</a> </li>
<li><a href="#" id="speed6">1.50x</a> </li>
<li><a href="#" id="speed7">1.75x</a> </li>
<li><a href="#" id="speed8">2x</a> </li>
</ul>
<footer>
<p class="copyright"><strong>HUNGRY SNAKE</strong> is developed and built by <strong>SHRINISH VHANBATTE</strong>         Copyright © <strong>SHRINISH VHANBATTE</strong>
</p>
</footer>
<div class="contact-icons">
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</div>
</div>
<div id="popupId" class="popup">
<div class="popup-content">
<p class="gameover">OOPS YOU LOST !!!</p>
<div class="back btn" onclick="backtohome()">BACK</div>
</div>
</div>
<script src="autonomous.js"></script>
<script src="maze.js"></script>
<script src="scripts.js"></script>
</body>
</html>