-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (28 loc) · 1.15 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link href="style.css" rel="stylesheet">
<title>sanke game</title>
</head>
<body>
<div class="container">
<div id="body"></div>
<div id='food'></div>
<div id="head"></div>
<div id="sfood"></div>
</div>
<div class="score" id="score"> </div>
<div class="score" id="hiscore"> </div>
<div class="speed">
<button id="decreaseSpeed">-</button>
<span id="showSpeed"></span>
<button id="increaseSpeed">+</button> </div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
<script src="snake.js"></script>
</body>
</html>