-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel.html
More file actions
executable file
·40 lines (39 loc) · 1.09 KB
/
Copy pathmodel.html
File metadata and controls
executable file
·40 lines (39 loc) · 1.09 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contador</title>
<link rel = "stylesheet" href = "estilo.css">
</head>
<body>
<header>
<h1>Contador</h1>
</header>
<section>
<!-- Formulário de entrada -->
<div id="dados">
<p>Número de Início
<input type="number" name="txtinicio" id="txtinicio" placeholder="Inicio">
</p>
<p>Número de Fim
<input type="number" name="txtfim" id="txtfim" placeholder="Fim">
</p>
<p>Salto
<input type="number" name="txtsalto" id="txtsalto" placeholder="Salto">
</p>
<p>
<input type="button" value="Contar" onclick="contar()">
</p>
</div>
<!-- Resultado -->
<div id="resultado">
<p>Resultado:</p>
</div>
</section>
<footer>
<p>©pedrovitor237</p>
</footer>
<script src="script.js"></script>
</body>
</html>