-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (38 loc) · 1.44 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
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<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 href="https://www.canva.com/design/DAE5fr9GTJY/view">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/estilo.css">
<title>Tetris</title>
</head>
<body>
<h1>Tetris </h1>
<main>
<div class="jogoJanela">
<canvas id="tetris" width="448" height="610"></canvas>
<p>
Pontuação: <span id="pontu"></span>
</p>
</div>
<p id="inst">Use as setas do teclado para controlar</p>
</main>
<footer class="rotape">
<p class=" Copyright "> ©Copyright Matheus de Almeida Esteban - 2022</p>
<div>
<a href="https://www.linkedin.com/in/matheus-de-almeida-esteban-8760b0233/" target="_blank">
<img class="logo" src="img/linkedin-logo.png" alt="Logo Linkedin">
</a>
<a href="https://github.com/MatheusDAlmeidaEsteban" target="_blank">
<img class="logo" src="img/git-logo.png" alt="Logo Github">
</a>
</div>
</footer>
<script src="js/funções.js "></script>
<script src="js/peças.js "></script>
<script src="js/estrutura.js "></script>
<script src="js/tetris.js "></script>
</body>