30 lines
		
	
	
		
			857 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			857 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="es">
 | 
						|
<head>
 | 
						|
  <meta charset="UTF-8">
 | 
						|
  <title>Tres 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">Tres en Raya vs Máquina</h1>
 | 
						|
 | 
						|
  <div id="controls">
 | 
						|
    <label for="player-side">Tu ficha:</label>
 | 
						|
    <select id="player-side">
 | 
						|
      <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 — Tú: <span id="score-player">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> |