-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.61 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="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tatetí</title>
<meta name="description" content="Juego tatetí online.">
<link rel="shortcut icon" href="./img/favicon.ico" type="image/x-icon">
<!-- Inter Regular 400 -->
<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=Inter&display=swap" rel="stylesheet">
<!-- Press Start 2 -->
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/tateti.css">
<link rel="stylesheet" href="./css/responsive.css">
</head>
<body class="contenedor-principal">
<header class="contenedor-logo">
<img class="logo" src="./img/camd-logo.svg" alt="Logo camd.">
</header>
<main class="contenedor-tateti">
<div class="tateti">
<canvas id="pizarra" width="300px" height="300px"></canvas>
</div>
<div class="botonera">
<button id="btn-nuevo-juego" class="btn-nuevo-juego" type="button">Nuevo juego</button>
</div>
</main>
<!-- FIXME: Workaround para solucionar carga de la fuente. -->
<footer class="footer"><pre class="copyright"><span>Desarrollado por </span><span>Christian Ariel Modesto Duarte </span><span>2022</span></pre><span class="ocultar">.</span></footer>
<script src="./js/tateti-min.js"></script>
</body>
</html>