-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathvamos_contar.html
More file actions
30 lines (30 loc) · 907 Bytes
/
vamos_contar.html
File metadata and controls
30 lines (30 loc) · 907 Bytes
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Vamos contar</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Vamos contar</h1>
</header>
<section>
<div id="dados">
<p> Início: <input type="number" name="inicio" id="start"></p>
<p>Fim: <input type="number" name="" id="end"></p>
<p>Passo: <input type="number" name="" id="step"></p>
<p><input type="button" value="contar" onclick="contar()"></p>
</div>
<div id="result">
<p>Preparando a contagem...</p>
</div>
</section>
<footer>
<p>© Guilherme Teixeira</p>
</footer>
<script src="script.js"></script>
</body>
</html>