-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (23 loc) · 896 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tabuada</title>
<link rel="stylesheet" href="./src/css/style.css">
<script defer type="text/javascript" src="./src/js/main.js"></script>
</head>
<body>
<h1>Calculadora de Tabuada</h1>
<form>
<label for="numero">Digite o número que deseja calcular a tabuada:</label>
<input type="number" id="numero" name="numero" placeholder="Ex: 7">
<label for="multiplicador">Até que número deseja multiplicar?</label>
<input type="number" id="multiplicador" name="multiplicador" placeholder="Ex: 10">
<label for="cor">Escolha a cor da linha:</label>
<input type="color" id="cor" name="cor" value="#000000">
<button type="button" onclick="calcularTabuada()">Calcular</button>
<div id="resultado"></div>
</form>
</body>
</html>