-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (50 loc) · 1.53 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
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Calculadora JavaScript</title>
<link rel="stylesheet" href="styles.css" />
<link rel="icon" href="/imagenes/icon.png">
</head>
<body onload="init();">
<table class="calculadora">
<tr>
<td colspan="4"><span id="resultado2"></span></td>
</tr>
<tr>
<td colspan="4"><span id="resultado"></span></td>
</tr>
<tr>
<td><button id="reset">C/AC</button></td>
<td><button id="memoryStorage">ms</button></td>
<td><button id="memoryRecall">mr</button></td>
<td><button id="multiplicacion">*</button></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="suma">+</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="cero">0</button></td>
<td></td>
<td></td>
<td><button id="igual">=</button></td>
</tr>
</table>
</body>
<script src="index.js"></script>
</html>