-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel.html
More file actions
executable file
·33 lines (31 loc) · 941 Bytes
/
Copy pathmodel.html
File metadata and controls
executable file
·33 lines (31 loc) · 941 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
31
32
33
<!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 = "estilo.css">
</head>
<body>
<header>
<h1>Gerador de Tabuada</h1>
<h3>Multiplicação</h3>
</header>
<section>
<!-- Entrada de dados -->
<div>
<p>Número: <input type="number" name="txtnumber" id="txtnumber" placeholder="Indique um número:"> <input type="button" value="Gerar Tabuada" onclick="gerarTabuada()"></p>
</div>
<div>
<p id="res">Tabuada:</p>
<select name="tabuada" id="seltab" size="10">
<option value="">Resultados: </option>
</select>
</div>
</section>
<footer>
<p>©pedrovitor237</p>
</footer>
<script src="script.js"></script>
</body>
</html>