-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (51 loc) · 1.47 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
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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calculadora JS</title>
<link rel="stylesheet" type="text/css" href="./css/style.css">
<script src="./js/calculadora.js" defer></script>
</head>
<body>
<header>
<h1>Calculadora JavaScript</h1>
<p>By GabrielPS</p>
</header>
<main>
<div class="calculadora">
<div class="visor">
<p class="resultado"></p>
</div>
<div class="teclado">
<ul class="numeros">
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
<li>0</li>
<li>.</li>
</ul>
<ul class="operacoes">
<li>+</li>
<li>-</li>
<li>*</li>
<li>/</li>
</ul>
<button class="calcular" id="exibirResultado">=</button>
<button class="limpar" id="limparResultado">limpar</button>
</div>
</div>
</main>
<footer>
<p>Histórico de Cálculos Recentes</p>
<ul class="historico">
</ul>
</footer>
</body>
</html>