-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (26 loc) · 1.05 KB
/
Copy pathindex.html
File metadata and controls
32 lines (26 loc) · 1.05 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Analisador de Números</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h1 class="titulo">Analisador de Números</h1>
<div class="divisao-numeros">
<div class="divisao-numero">
<label for="numero">Digite um número:</label>
<input type="number" name="numero" id="numero" class="entrada">
<input type="button" value="Adicionar" id="botaoAdicionar" class="botao">
</div>
<div class="divisao-resultado">
<textarea rows="8" cols="30" name="numeros" id="numeros" readonly></textarea>
<input type="button" value="Calcular" id="botaoCalcular" class="botao">
</div>
<p id="resultado"></p>
</div>
<p class="autoria">© LucasDevRJ</p>
</body>
<script src="js/analisador.js"></script>
</html>