-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (29 loc) · 1.36 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Einstein Snake</title>
<link rel="stylesheet" href="styles.css">
<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=Orbitron:wght@400..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="title" style="margin-top: 20px;">
<h1>Einstein Snake</h1>
<img src="./images/einstein-logo.png" alt="Logo Einstein" height="50px" style="margin-top: -10px;">
</div>
<div class="container">
<canvas id="gameCanvas" width="800" height="500"></canvas>
<div class="info">
<div id="scoreBox">Fótons: 0</div>
<button id="restartBtn">Reiniciar</button>
</div>
</div>
<div id="messageDisplay" style="font-size: 24px; text-align: center; display: flex; align-items: center; justify-content: center; margin-top: 40px;">Ajude o Einstein a capturar os fótons! 💡</div>
<footer>Created by Lucas Ferreira (UnB/MNPEF) - CC BY-NC-ND 4.0</footer>
<script src="functions.js"></script>
</body>
</html>