-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 1.02 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/loriStyle.css">
<title>Tabuada da Lori</title>
</head>
<body id="degrade">
<header>
<h1>Tabuada da Lori</h1>
</header>
<section>
<div class="conteudo">
<p>Número:
<input type="number" name="num" id="numText" placeholder="Digite um número">
<input type="button" value="Gerar Tabuada" id="gerarTab" onclick="tabuada()">
</p>
</div>
<div class="gerar">
<select name="tabuada" id="seltab" size="10">
<option>Click em Gerar Tabuada</option>
</select>
</div>
<p id="clear"><input type="reset" value="Limpar resultado" onclick="recarregar()"></p>
</section>
<script src="js/function.js"></script>
<footer>
<p>© TioMazão</p>
</footer>
</body>
</html>