-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (35 loc) · 1.13 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
<!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">
<meta name="author" content="Barbara Cristina Viana" />
<meta name="keywords" content="Pagina de depoimentos, html, css" />
<meta name="description" content="descrição do site" />
<link rel="stylesheet" href="style.css">
<link rel="icon" href="icon.png">
<title>Tabuada</title>
</head>
<body>
<header>
<h1>Tabuada</h1>
</header>
<section>
<div>
<p>Tabuada do número:<input type="number" name="num" id="txtn"></p>
<p><input type="button" value="Gerar Tabuada" class="button" onclick="tabuada()"></p>
</div>
<div>
<select name="tabuada" id="seltab" size="10">
<option class="option">Veja aqui a tabuada escolhida</option>
</select>
</div>
</section>
<footer>
<p>©CursoEmVideo</p>
<p>Barbara Cristina Viana</p>
</footer>
<script src="script.js"></script>
</body>
</html>