-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (49 loc) · 2.03 KB
/
Copy pathindex.html
File metadata and controls
51 lines (49 loc) · 2.03 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" contente="width=device-width, inicial-scale=1.0">
<link rel="shortcut icon" href="Imagem/Calculadora.jfif" type="Imagem/x-icon">
<link rel="stylesheet" type="text/css" href="pagina.css">
<title>Calculadora</title>
</head>
<body>
<div class="container">
<div class="calculator">
<input type="text" id="result" readonly>
<div class="buttons1">
<button onclick="clearResult()">C</button>
</div>
<div class="buttons">
<button onclick="appendToResult('7')">7</button>
<button onclick="appendToResult('8')">8</button>
<button onclick="appendToResult('9')">9</button>
<button onclick="appendToResult('/')">/</button>
<button onclick="appendToResult('4')">4</button>
<button onclick="appendToResult('5')">5</button>
<button onclick="appendToResult('6')">6</button>
<button onclick="appendToResult('*')">*</button>
<button onclick="appendToResult('1')">1</button>
<button onclick="appendToResult('2')">2</button>
<button onclick="appendToResult('3')">3</button>
<button onclick="appendToResult('+')">+</button>
<button onclick="appendToResult('0')">0</button>
<button onclick="appendToResult('00')">00</button>
<button onclick="appendToResult('.')">.</button>
<button onclick="appendToResult('-')">-</button>
</div>
<div class="buttons1">
<button onclick="evaluateResult('')">=</button>
</div>
</div>
<div class="history">
<h3>Histórico</h3>
<table id="historyTable">
<tbody>
</tbody>
</table>
</div>
</div>
<script src="script.js"></script>
</body>
</html>