-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (48 loc) · 2.39 KB
/
index.html
File metadata and controls
60 lines (48 loc) · 2.39 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
56
57
58
59
60
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/3df637a2f2.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<title>Calculadora</title>
</head>
<body>
<div class="conteudo">
<div class="calculator">
<p class="result" id="resultado"></p>
<table>
<tr>
<td ><button class="btn ac" style="width: 106px" onclick="clean()">AC</button></td>
<td><button class="btn neg" onclick="backspace()"><i class="fas fa-backspace"></i></button></td>
<td><button class="btn especial" onclick="insert('/')"><i class="fas fa-divide"></i></button></td>
</tr>
<tr>
<td><button class="btn" onclick="insert('7')">7</button></td>
<td><button class="btn" onclick="insert('8')">8</i></button></td>
<td><button class="btn" onclick="insert('9')">9</i></button></td>
<td><button class="btn especial" onclick="insert('*')"> x </button></td>
</tr>
<tr>
<td><button class="btn" onclick="insert('4')">4</button></td>
<td><button class="btn" onclick="insert('5')">5</i></button></td>
<td><button class="btn" onclick="insert('6')">6</i></button></td>
<td><button class="btn especial" onclick="insert('-')"> - </button></td>
</tr>
<tr>
<td><button class="btn" onclick="insert('1')">1</button></td>
<td><button class="btn" onclick="insert('2')">2</i></button></td>
<td><button class="btn" onclick="insert('3')">3</i></button></td>
<td><button class="btn especial" onclick="insert('+')">+</button></td>
</tr>
<tr>
<td><button class="btn" onclick="insert('0')">0</button></td>
<td><button class="btn" onclick="insert('.')"> . </button></td>
<td ><button class="btn igual" style="width: 106px" onclick="confirma()"> = </button></td>
</tr>
</table>
</div>
</div>
<script src="script.js"></script>
</body>
</html>