-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsnake.html
More file actions
executable file
·37 lines (31 loc) · 1.23 KB
/
snake.html
File metadata and controls
executable file
·37 lines (31 loc) · 1.23 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Vote | Anaconda</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/snake.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-6 rightSide">
<h1 class="text-center mb-5 mt-3"><b>QUESTION</b></h1>
<h4 class="text-center mb-5" id="question"></h4>
<div class="options ml-5 mb-5" id="answer">
</div>
<h1 class="text-center mb-5 mt-3 ml-5 btn-primary p-2 rounded">SCORES:<span id="score">0</span> </h1>
<!-- <h4 class="scores text-center ml-5 ">SCORES:<span id="score ">0</span></h4> -->
</div>
<div class="col-md-6 weSnake ">
<div>
<h1 class="text-center my-3 "><b>WE VOTE NAIJA</b></h1>
<canvas width="600 " height="400 " id="game"></canvas>
</div>
</div>
</div>
</div>
</body>
<script src="js/snake.js " type="text/javascript "></script>
<script src="js/jquery.js " type="text/javascript "></script>
<script src="js/bootstrap.min.js " type="text/javascript "></script>
</html>