-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 1.07 KB
/
index.html
File metadata and controls
32 lines (31 loc) · 1.07 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>N en Raya</title>
<link rel="stylesheet" href="assets/css/estilos.css">
</head>
<body>
<!-- Contenedor 1: Selector e información -->
<fieldset id="contenedor-1">
<legend>¡Vamos a jugar N en Raya!</legend>
<section>
<div class="informacion-tablero">
<label class="titulo">Selecciona el tamaño de tu tablero</label>
<select name="" id="selector-cuadricula"></select>
<button id="button">Reiniciar juego</button>
</div>
<div class="informacion-tablero">
<h2 class="titulo">¿Cómo va la partida? 🤔</h2>
<p id="turnos">Iniciando el juego, parte el jugador 1</p>
</div>
</section>
<!-- Contenedor 2: Tablero -->
</fieldset>
<fieldset id="contenedor-2">
<table id="tablero"></table>
</fieldset>
<script src="assets/js/script.js"></script>
</body>
</html>