-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (35 loc) · 1022 Bytes
/
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
36
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tic Tac Toe Inteligente</title>
<link rel="stylesheet" href="styles.css">
<script src="main.js" defer></script>
</head>
<body>
<h1>Tic Tac Toe</h1>
<div id="puntuacion">
<div id="puntuacion-jugador">
<h3>Puntuacion del jugador</h3>
<p>0</p>
</div>
<div id="puntuacion-computadora">
<h3>Puntuacion de la computadora</h3>
<p>0</p>
</div>
</div>
<p id="ganador"></p>
<div class="centro acciones">
<button id="reiniciar">Nuevo juego</button>
<select id="primer-jugador">
<option value="O">Jugador</option>
<option value="X">Computadora</option>
</select>
</div>
<div class="centro">
<div id="cuadricula">
</div>
</div>
</body>
</html>