-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalculator.html
More file actions
55 lines (39 loc) · 1.31 KB
/
calculator.html
File metadata and controls
55 lines (39 loc) · 1.31 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="elementos-calculadora">
<input type = "text" id = "operaciones" name = "operaciones" value = "">
<div>
<input type = button id ="uno" value = "1" >
<input type ="button" id ="dos" value = "2">
<input type ="button" id ="tres" value = "3">
<input type ="button" id ="suma" value = "+">
</div>
<div>
<input type ="button" id ="cuatro" value = "4">
<input type ="button" id ="cinco" value = "5">
<input type ="button" id ="seis" value = "6">
<input type ="button" id ="resta" value = "-">
</div>
<div>
<input type ="button" id ="siete" value = "7">
<input type ="button" id ="ocho" value = "8">
<input type ="button" id ="nueve" value = "9">
<input type ="button" id ="multiplica" value = "*">
</div>
<div>
<input type = "button" id = "punto" value = ".">
<input value = "AC" type ="button" id = "borrar">
<input value = "=" type ="button" id = "operacion">
<input value = "/" type ="button" id = "dividir">
</div>
</div>
<script src = "scriptLastClass.js"></script>
</body>
<link rel="stylesheet" href="styleCalculator.css">
</html>