Calculadora.html 1.06 KB
Newer Older
Javier Ferreira 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 62 63 64 65 66 67 68
<html>

<head>
<title>Calculadora con javascript

</title>
<link rel="stylesheet" type="text/css" href="estilo.css">

</head>
<body onload=" init();">

	<table class ="calculadora">
		<tr>
		<td colspan="4"> <span id= "resultado"></span>  </td>	

		</tr>
		<tr>
		<td ><button id="siete ">7</button></td>
		<td ><button id="ocho ">8</button></td>

		<td ><button id="nueve ">9</button></td>
			
		<td ><button id="division">/</button></td>

		
		<tr>
			
		<td ><button id="cuatro ">4</button></td>
		<td ><button id="cinco ">5</button></td>

		<td ><button id="seis ">6</button></td>
			
		<td ><button id="multiplicacion">*</button></td>


		</tr>	

		<tr>
		<td><button id="uno">1</button></td>
		<td><button id="dos">2</button></td>
		<td><button id="tres">3</button></td>
		<td ><button id="resta">-</button></td>
		</tr>


		<tr>
		<td><button id="igual">=</button></td>
		<td><button id="reset">C</button></td>
		<td><button id="cero">0</button></td>
		<td ><button id="sumar">+</button></td>
		</tr>



	




	</table>>

<script src="funcionalidad.js"></script>

</body>



</html>