-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 1.25 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
<title>Jogo da Cobrinha com JavaScript</title>
<meta name="description" content="Jogo da Cobrinha com JavaScript desenvolvido por Guilherme Magno durante o Bootcamp HTML Web Developer da DIO">
<meta property="og:type" content="website"/>
<meta property="og:title" content="Jogo da Cobrinha com JavaScript"/>
<meta property="og:description" content="Jogo da Cobrinha com JavaScript desenvolvido por Guilherme Magno durante o Bootcamp HTML Web Developer da DIO"/>
<meta property="og:url" content="http://devmagno.github.io/js-snake-game"/>
<meta property="og:image" content="http://devmagno.github.io/js-snake-game/og-image.png"/>
<meta property="og:site_name" content="JS Snake Game"/>
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
</head>
<body>
<h1>🐍 Jogo da Cobrinha 🐍</h1>
<p>
Pontuação: <span id="score">0</span><br>
Recorde: <span id="highscore"></span>
</p>
<canvas id="game" width="512" height="512"></canvas>
</body>
</html>