-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtabuada.html
33 lines (31 loc) · 1.28 KB
/
tabuada.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
<!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">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="styles.css">
<title>Tabuada</title>
</head>
<body>
<nav class="return-nav">
<a href="index.html"><i class="material-icons">arrow_back</i></a>
</nav>
<main class="container-titulo-exercicio">
<h1 class="titulo-exercicio">Tabuada</h1>
<section class="exercicio-container primary-txt">
<label>Número:</label>
<div class="input-button-row">
<input type="number" class="numeroDeEntradaTabuada">
<button class="primary-btn" onclick="gerarTabuada()">Gerar tabuada</button>
</div>
<div class="resultadoTabuada result-box margin-10px">
<p>Digite um número acima</p>
</div>
<button onclick="resetFormsTabuada()" class="reset-forms primary-btn margin-10px">Limpar tela</button>
</section>
</main>
<script src="script.js"></script>
</body>
</html>