-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprincipal.html
executable file
·64 lines (59 loc) · 1.89 KB
/
principal.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Curso de Lógica em JS</title>
<link rel="stylesheet" href="style.css">
<!-- <script src="imc.js"></script> -->
<!-- <script src="gasolinaxalcool.js"></script> -->
<!-- <script src="media.js"></script> -->
<!-- <script src="maior2numeros.js"></script> -->
<!-- <script src="triangulo.js"></script> -->
<!-- <script src="procuranomes.js"></script> -->
<!-- <script src="pesquisarregex.js"></script> -->
</head>
<body>
<!-- <div>
<label for="gasolina">Gasolina</label>
<input type="text" id="gasolina" class="form-control">
</div>
<div>
<label for="alcool">Alcool</label>
<input type="text" id="alcool" class="form-control">
</div>
<hr>
<div>
<button onclick="verificar()">Verificar</button>
</div>
<div id="teste1" class="cor-fundo">
<input type="text" id="resultado" readonly>
</div>
<div id="teste2" class="cor-fundo">
<label for="">
Pesquisar nome:
<input type="text" onkeyup="pesquisar(this)">
</label>
</div> -->
<!-- <input type="text" id="item">
<button onclick="addItem()">Adicionar</button>
<ul id="lista">
</ul> -->
<!-- <script src="funcoes.js"></script> -->
<div>
<label for="">
Tarefa: <input type="text" name="" id="tarefa_input">
</label>
<br>
<label for="">
Concluido: <input type="checkbox" name="" id="concluido_input">
</label>
<br>
<button onclick="adicionar()">Adicionar</button>
</div>
<div>
<ul id="tarefas">
</ul>
</div>
<script src="exercicio_8.js"></script>
</body>
</html>