-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.26 KB
/
index.html
File metadata and controls
37 lines (37 loc) · 1.26 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tabuada JS</title>
<link rel="stylesheet" href="css/styles.css">
<script src="js/scripts.js" defer></script>
</head>
<body>
<h2>Digite o número e confirme para gerar uma tabuada </h2>
<form id="multiplication-form">
<div class="form-control">
<label for="number">Tabuada do: </label>
<input type="number" name="number" id="number" placeholder="3">
</div>
<div class="form-control">
<label for="multiplicator">Multiplicar até: </label>
<input type="number" name="multiplicator" id="multiplicator" value="10">
</div>
<input type="submit" value="Gerar tabuada">
</form>
<div id="multiplication-table">
<h2 id="multiplication-title">Tabuada do número <span></span></h2>
</div>
<div id="multiplication-operations">
<p>Informe um número para calcular uma tabuada...</p>
<!-- <div class="row">
<div class="operation">5 x 1 =</div>
<div class="result">5</div>
</div><div class="row">
<div class="operation">5 x 2 =</div>
<div class="result">10</div>
</div> -->
</div>
</body>
</html>