Skip to content
Snippets Groups Projects
Select Git revision
  • b1b4faa9ffdf5d609a81d0b40577482897fc29ae
  • main default protected
  • Release_3
  • Release_2
  • microservices_split
  • Release_1
6 results

README.odt

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    index.html 2.10 KiB
    <!DOCTYPE html>
    <html>
    
    <head>
        <meta charset="utf-8">
        <title id="titulo"> Ventas de videojuegos </title>
        <script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script>
        <link rel="stylesheet" type="text/css" href="ventas_videojuegos.css">
    
    </head>
    
    <body>
        <div class="caja1">
            <p>Género:</p>
            <table>
                <tr>
                    <td>
                        <input type="radio" name="genre" id="action" value="action">action
                    </td>
                    <td>
                        <input type="radio" name="genre" id="adventure" value="adventure">adventure
                    </td>
                    <td>
                        <input type="radio" name="genre" id="fighting" value="fighting">fighting
                    </td>
                    <td>
                        <input type="radio" name="genre" id="misc" value="misc">misc
                    </td>
                    <td>
                        <input type="radio" name="genre" id="platform" value="platform">platform
                    </td>
                    <td>
                        <input type="radio" name="genre" id="puzzle" value="puzzle">puzzle <br>
                    </td>
                </tr>
                <tr>
                    <td>
                        <input type="radio" name="genre" id="racing" value="racing">racing
                    </td>
                    <td>
                        <input type="radio" name="genre" id="role_playing" value="role_playing">role_playing
                    </td>
                    <td>
                        <input type="radio" name="genre" id="shooter" value="shooter">shooter
                    </td>
                    <td>
                        <input type="radio" name="genre" id="simulation" value="simulation">simulation
                    </td>
                    <td>
                        <input type="radio" name="genre" id="sports" value="sports">sports
                    </td>
                    <td>
                        <input type="radio" name="genre" id="strategy" value="strategy">strategy
                    </td>
                </tr>
            </table>
        </div>
    
        <script type="text/javascript" src="ventas_videojuegos.js"></script>
    
    </body>
    
    </html>