31 lines
968 B
HTML
31 lines
968 B
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>4 en Raya vs Máquina</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<h1 id="title">4 en Raya vs Máquina</h1>
|
|
|
|
<div id="controls">
|
|
<label for="difficulty">Dificultad IA:</label>
|
|
<select id="difficulty">
|
|
<option value="facil">Fácil (profundidad 1)</option>
|
|
<option value="normal" selected>Normal (profundidad 3)</option>
|
|
<option value="dificil">Difícil (profundidad 4)</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div id="board" role="grid" aria-labelledby="title"></div>
|
|
<div id="status" aria-live="polite"></div>
|
|
|
|
<div id="score">
|
|
Marcador — Tú: <span id="score-human">0</span> · Máquina: <span id="score-ai">0</span> · Empates: <span id="score-d">0</span>
|
|
</div>
|
|
|
|
<button id="restart-btn">Reiniciar</button>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |