-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (28 loc) · 945 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-BR">
<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, maximum-scale=1.0, user-scalable=0">
<title>SnakeGame</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 class="scores" id="score">Score: 0</h1>
<canvas width="400" height="400" id="game"></canvas>
<div class="controls" id="controls">
<button
class="ctrl_btn"
id="cima">⇧</button>
<div class="center_btn">
<button class="ctrl_btn" id="esquerda">⇦</button>
<button id="btn_0"></button>
<button class="ctrl_btn" id="direita">⇨</button>
</div>
<button class="ctrl_btn" id="baixo">⇩️</button>
</div>
<script src="functions.js" defer></script>
<script src="controls.js" defer></script>
<script src="main.js" defer></script>
</body>
</html>