-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (40 loc) · 1.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game Snake🐍</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="main.css">
<link rel="shortcut icon" href="logo.ico" type="image/x-icon">
<script src="game.js" type="text/javascript" defer></script>
</head>
<body>
<div class="menu-principal">
<div id="board"></div>
<div class="boardInfo">
<div id="score">
Score: <div id="scoreBoard"></div>
</div>
<button id="start">Start</button>
</div>
<div id="controles">
<div id="left">
<img src="arrow.png" alt="ArrowLeft">
</div>
<div id="up">
<img src="arrow.png" alt="ArrowUp">
</div>
<div id="down">
<img src="arrow.png" alt="ArrowDown">
</div>
<div id="right">
<img src="arrow.png" alt="ArrowRight">
</div>
</div>
<div id="gameOver">Game Over</div>
</div>
</body>
</html>