-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.22 KB
/
index.html
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
<!DOCTYPE html>
<html lang="es" dir="ltr">
<head>
<meta charset="utf-8">
<title>Calculadora</title>
<link type="text/css" rel="stylesheet" href="css/estilos.css">
<script src="procesos.js"></script>
</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>
<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="suma">+</button></td>
</tr>
</table>
</body>
</html>