calculadora.html 1.46 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
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Calculadora</title>
        <link rel="stylesheet"  href="styles.css">
    </head>
    <body onload="init()">
        <script src="javaScript2.js"></script>
       
        <div class="calculadora">
            
            
            <div class="teclas">
                <div class="pantalla">
                    <div id="resultado"></div>
                </div>
                <div>
                    <button id="uno">1</button>
                    <button id=dos>2</button>
                    <button id="tres">3</button>
                </div>
                <div>
                    <button id="cuatro">4</button>
                    <button id="cinco">5</button>
                    <button id="seis">6</button>
                </div>
                <div>
                    <button id="siete">7</button>
                    <button id="ocho">8</button>
                    <button id="nueve">9</button>
                </div>
                <div>
                    <button id="cero">0</button>
                    <button id="suma">+</button>
                    <button id="resta">_</button>
                </div>
                <div>
                    <button id="division">÷</button>
                    <button id="multiplicacion">x</button>
                    <button id="esigual">=</button>
                </div>
            </div>
                
        </div>
    </body>
</html>