-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (36 loc) · 1.25 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vamos contar</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="mediaQuery.css">
</head>
<body>
<h1>VAMOS CONTAR</h1>
<section id="sectionContainer">
<div id="formulario">
<div class="item">
<label for="iinicio">Inicio:</label>
<input type="number" name="numero1" id="iinicio" required>
</div>
<div class="item">
<label for="ifim">Fim:</label>
<input type="number" name="fim" id="ifim" required>
</div>
<div class="item">
<label for="ipasso">Passo:</label>
<input type="number" name="passo" id="ipasso" required>
</div>
<input id="iresBtn" type="button" value="contar">
</div>
<div id="ires">
</div>
</section>
<footer>
<p>Por <a href="https://github.com/nexus-4">Antonio Gleyser</a> </p>
</footer>
<script src="index.js"></script>
</body>
</html>