-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.06 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
<!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>
<script src="script.js" defer></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h2>Digite o número e confirme para gerar uma tabuada</h2>
<form id="multiplication-form">
<div id="form-control">
<label for="number">Tabuada do:</label>
<input type="number" name="number" id="number" placeholder="3"/>
</div>
<div id="form-control">
<label for="multiplicator">Multiplicar até:</label>
<input
type="number"
name="multiplicator"
id="multiplicator"
value="10"
/>
</div>
<input type="submit" value="Calcular"/>
</form>
<div id="multiplication-table">
<h2 id="multiplication-title">Tabuada do número: <span></span></h2>
<div id="multiplication-operations">
<p>Informe um número para calcular uma tabuada.</p>
</div>
</div>
</body>
</html>