-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (37 loc) · 1.37 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
<!DOCTYPE html>
<html lang="es">
<head>
<title>TATLO! (Turn All The Lights Off!)</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Challenge your mind: Click to turn all the tiles black. Simple to learn, tough to master!">
<!-- Meta Open Graph -->
<meta property="og:title" content="TATLO! (Turn All The Lights Off!)">
<meta property="og:description" content="Click to turn all the tiles black.">
<meta property="og:image" content="https://napero.github.io/TATLO/image.png"> <!-- Ajusta la URL de la imagen -->
<meta property="og:url" content="https://napero.github.io/TATLO/">
<meta property="og:type" content="website">
<meta property="og:site_name" content="TATLO">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="https://napero.github.io/TATLO/favicon.ico"> <!-- Ajusta la URL del favicon -->
<!-- Styles -->
<style>
body {
background-color: #202020;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
padding: 0;
margin: 0;
}
canvas {
border: 1px solid black;
}
</style>
</head>
<body>
<canvas id="gameCanvas"></canvas>
<script src="game.js"></script>
</body>
</html>