tateti.html 1.62 KB
Newer Older
Silvia Barrientos committed
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 37 38 39 40 41 42 43 44 45 46 47 48 49
<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>TATETI</title>
    <link rel="stylesheet" href="css/styles.css">
</head>
<body onload="init()">
    <script src="js/javaScript2.js"></script>
    <header>
        <h1>TA-TE-TI</h1>
    </header>
    <main>
        <table>
            <thead>
                <tr>
                    <td><button id="jug1" class="estboton">JUGADOR 1</button></td>
                    <td><button id="xo1" class="XO"> </button></td>
                </tr>
                <tr>
                    <td><button id="jug2" class="estboton">JUGADOR 2</button></td>
                    <td><button id="xo2" class="XO"> </button></td>
                </tr>
                <tr>
                    <td><button id="comenzar" class="estboton com">COMENZAR</button></td>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td><button id="A1"> </button></td>
                    <td><button id="A2"> </button></td>
                    <td><button id="A3"> </button></td>
                </tr>
                <tr>
                    <td><button id="B1"> </button></td>
                    <td><button id="B2"> </button></td>
                    <td><button id="B3"> </button></td>
                </tr>
                <tr>
                    <td><button id="C1"> </button></td>
                    <td><button id="C2"> </button></td>
                    <td><button id="C3"> </button></td>
                </tr>
            </tbody>
        </table>
    </main>
</body>
</html>