tateti.html 1.75 KB
Newer Older
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 50 51 52 53 54 55 56 57 58 59
<!DOCTYPE html>
<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>Document</title>
    <link rel="stylesheet" href="css/estilos.css">
    <script src="tateti.js"></script>
</head>

<body>

    <div id="seleccionPadre">
        <form action="" id="form-container" onsubmit="event.preventDefault()">
            <div id="seleccion" class="">
                <p>
                    Nombre jugador 1:<input id="jugador1">
                </p>
                <p>
                    Ficha jugador 1:<input id="ficha1">
                </p>
                <p>
                    Nombre jugador 2:<input id="jugador2">
                </p>
                <p>
                    Ficha jugador 2:<input id="ficha2">
                </p>
                <button type="submit" id="boton" onclick="validardatos()">Aceptar</button>
            </div>
        </form>

    </div>
    <div>
        <p id="player">Ingrese el nombre de los jugadores</p>
        <p id="ganador"></p>
        <table>
            <tr>
                <td id="pf" onclick="ficha(id)">-</td>
                <td id="pf1" onclick="ficha(id)">-</td>
                <td id="pf2" onclick="ficha(id)">-</td>
            </tr>
            <tr>
                <td id="pf3" onclick="ficha(id)">-</td>
                <td id="pf4" onclick="ficha(id)">-</td>
                <td id="pf5" onclick="ficha(id)">-</td>
            </tr>
            <tr>
                <td id="pf6" onclick="ficha(id)">-</td>
                <td id="pf7" onclick="ficha(id)">-</td>
                <td id="pf8" onclick="ficha(id)">-</td>
            </tr>
        </table>

    </div>
</body>

</html>