-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (72 loc) · 2.64 KB
/
index.html
File metadata and controls
76 lines (72 loc) · 2.64 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
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
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="es">
<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="icon" type="image/x-icon" href="./4373213_js_logo_logos_icon.ico">
<link rel="stylesheet" href="./styles.css">
<title>JS Intermediate</title>
</head>
<body>
<div id="root"></div>
<div class="countries" id="countries"></div>
<div>
<h1>---------------------------------------------</h1>
<button id="button-counter">Tracker Counter</button>
<h2 id="counter-view">0</h2>
</div>
<div>
<h1>---------------------------------------------</h1>
<h2>REVIEW FOR INPUT TYPES</h2>
<input type="text" id="input-name" placeholder="Enter your name">
<h2 id="input-content"></h2>
</div>
<h1>---------------------------------------------</h1>
<h2>Form with checkbox</h2>
<form>
<div>
<label for="id-01">Label for ID 01</label>
<input type="checkbox" value="id-01" id="id-01" class="inputs-checkbox">
</div>
<div>
<label for="id-02">Label for ID 02</label>
<input type="checkbox" value="id-02" id="id-02" class="inputs-checkbox">
</div>
<div>
<label for="id-03">Label for ID 03</label>
<input type="checkbox" value="id-03" id="id-03" class="inputs-checkbox">
</div>
<div>
<label for="id-04">Label for ID 04</label>
<input type="checkbox" value="id-04" id="id-04" class="inputs-checkbox">
</div>
<button type="button" id="button-form">Mostrar Data</button>
</form>
<h3>Selected Values</h3>
<ul id="list-items"></ul>
<div>
<h1>Lista de users con buscador</h1>
<!-- Acá vamos a poner el buscador -->
<!-- Acá armamos una lista con los nombres de los users ✔️ -->
<section>
<ul id="user-list"></ul>
</section>
</div>
<div>
<h1>Lista de animals con buscador</h1>
<!-- Acá vamos a poner el buscador -->
<input id="input-search-animal" type="text" placeholder="Busca un animal . . . 🐈">
<!-- Acá armamos una lista con los nombres de los animals ✔️ -->
<section>
<ol id="animal-list"></ol>
</section>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="./methods.js"></script>
<script src="./functions.js"></script>
<script src="./dom.js"></script>
<script src="./events.js"></script>
<script src="./asynchronism.js"></script>
</html>