tateti.html 1.29 KB
Newer Older
Jose Figueredo 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 50 51 52 53 54 55 56 57 58 59 60 61
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="estilos.css">
    <title>Document</title>
</head>
<body>


    <h1>Tateti</h1>
    <div>

        <table id="tabla" border="1">

            <tr>
    
                <td onclick="insertar(1,event)" id="11">   *</td>
                <td onclick="insertar(2,event)"id="12">   *</td>
                <td onclick="insertar(3,event)" id="13">   *</td>
        
                
            </tr>
    
            <tr>
                <td onclick="insertar(4,event)" id="21">*</td>
                <td onclick="insertar(5,event)" id="22">*</td>
                <td onclick="insertar(6,event)" id="23">*</td>
            </tr>
    
            <tr>
    
                <td onclick="insertar(7,event)" id="31">*</td>
                <td onclick="insertar(8,event)" id="32">*</td>
                <td onclick="insertar(9,event)" id="33">*</td>
            </tr>
    
    
    
        </table>
        <p>Los * representas casillas vacias</p>
        
        <a href="javascript:location.reload()">
            <button>Reiniciar</button></a>
    
        <p id="resultado"></p>



    </div>
    

 <script src="app.js">


 </script>

    
</body>
</html>