forked from gustavoguanabara/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (41 loc) · 1.48 KB
/
index.html
File metadata and controls
43 lines (41 loc) · 1.48 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
41
42
43
<!--
## IMPORTANTE ##
Você tem todo o direito de usar esse material
para seu próprio aprendizado. Professores também
podem ter acesso a todo o conteúdo e usá-los com
seus alunos. Porém todos os que usarem esse
material - seja para qual for a finalidade - deverão
manter a referência ao material original, disponível
em https://github.com/gustavoguanabara/javascript. Este
material não poderá ser utilizado em nenhuma hipótese
para ser replicada - integral ou parcialmente -
por autores/editoras/instituições para criar livros
ou apostilas, com finalidades de obter ganho financeiro
com ele.
-->
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tabuada</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Super Tabuada</h1>
<p>Escreva um número na caixa a seguir e te mostrarei a tabuada dele.</p>
<section id="entrada">
<form action="#" method="get">
<p>
<label for="fnum">Número: </label>
<input type="number" name="num" id="fnum" placeholder="Número: ">
<input type="submit" value="Tabuada" formaction="javascript:tabuada()">
</p>
</form>
</section>
<section id="saida">
<p>Preencha os dados acima e aperte o botão.</p>
</section>
<script src="script.js"></script>
</body>
</html>