-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
42 lines (39 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<title>Calculadora con Javascript
</title>
<link type="text/css" href="estilo.css"rel ="stylesheet">
</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>
<script src="funcionalidad.js"></script>
</body>