30 lines
840 B
HTML
30 lines
840 B
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Tres en Raya</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<h1 id="title">Tres en Raya (Tic Tac Toe)</h1>
|
|
|
|
<div id="controls">
|
|
<label for="first-player">Primer jugador:</label>
|
|
<select id="first-player">
|
|
<option value="X" selected>X</option>
|
|
<option value="O">O</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div id="board" role="grid" aria-labelledby="title"></div>
|
|
<div id="status" aria-live="polite"></div>
|
|
|
|
<div id="score">
|
|
Marcador — X: <span id="score-x">0</span> · O: <span id="score-o">0</span> · Empates: <span id="score-d">0</span>
|
|
</div>
|
|
|
|
<button id="restart-btn">Reiniciar</button>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |