-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModelo.html
31 lines (29 loc) · 883 Bytes
/
Modelo.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tabuada</title>
<link rel="stylesheet" href="estilo.css">
</head>
<body>
<Header>
<h1>tabuada</h1>
</Header>
<section>
<div>
<p>Número: <input type="number" name="num" id="txtn">
<input type="button" value="Gerar Tabuada" onclick="tabuada()"></p>
</div>
<div>
<select name="tabuada" id="seltab" size="10"></select>
<option style="text-align: center;">Digite um número acima</option>
</div>
</section>
<footer>
<P>© Leno Rafael</P>
</footer>
<script src="script.js"></script>
</body>
</html>