forked from EBAC-QE/aula-java-scrip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (24 loc) · 768 Bytes
/
Copy pathindex.html
File metadata and controls
35 lines (24 loc) · 768 Bytes
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">
<meta charset="utf-8">
<body>
<h1>Aula de JavaScript</h1>
<h2>Mensagem do JS</h2>
<div id="mensagem"></div>
<h2>Tipos de dados</h2>
<div id="tipos"></div>
<h2>Variáveis</h2>
<div id="variaveis"></div>
<h2>Operadores</h2>
<div id="operadores"></div>
<h2>Funções</h2>
<div id="funcoes">
<button onclick="verificarParOuImpar()">Verificar número</button>
</div>
<script src="mensagem.js"></script>
<script src="tipos.js"></script>
<script src="variaveis.js"></script>
<script src="operadores.js"></script>
<script src="impar-ou-par.js"></script>
</body>
</html>