-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculadora.html
55 lines (48 loc) · 1.72 KB
/
calculadora.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
52
53
54
55
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calculadora</title>
<link rel="stylesheet" href="stylecal.css">
<link rel="shortcut icon" href="calculadora.png" type="image/x-icon">
</head>
<body>
<main>
<div id="calculator">
<input type="text" id="display" disabled>
<br>
<button id="ac" class="operator">AC</button>
<button id="de" class="operator">DEL</button>
<button id="." class="operator">.</button>
<button id="/" class="operator">/</button>
<br>
<button id="7">7</button>
<button id="8">8</button>
<button id="9">9</button>
<button id="*" class="operator">*</button>
<br>
<button id="4">4</button>
<button id="5">5</button>
<button id="6">6</button>
<button id="-" class="operator">-</button>
<br>
<button id="1">1</button>
<button id="2">2</button>
<button id="3">3</button>
<button id="+" class="operator">+</button>
<br>
<button id="00">00</button>
<button id="0">0</button>
<button id="=" class="equal operator">=</button>
<br>
</div>
<footer>
<div class="card">
<p> Desenvolvido Por <a href="http://scarpato.cf" target="_blank" class="nome">Rafael Scarpato</a> </p></div>
</footer>
</main>
<script src="scriptcal.js"></script>
</body>
</html>