forked from aavendan/javascript101
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (47 loc) · 1.5 KB
/
index.html
File metadata and controls
61 lines (47 loc) · 1.5 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<title> JavaScript - 101 </title>
</head>
<body>
<header class="max-w-xl mx-auto my-6">
<h1 id="title" class="text-xl text-center"> Título </h1>
</header>
<main class="max-w-xl mx-auto text-gray-700 bg-white shadow-md rounded-sm p-3">
<table class="w-full text-left table-auto min-w-max p-3">
<thead>
<tr class="text-slate-500 border-b border-slate-300">
<th class="py-2">
<span class="flex items-center">
Nombre
</span>
</th>
<th data-type="date" data-format="YYYY/DD/MM">
<span class="flex items-center">
Fecha de Lanzamiento
</span>
</th>
<th>
<span class="flex items-center">
Número de Usuarios
</span>
</th>
<th>
<span class="flex items-center">
Popularidad
</span>
</th>
</tr>
</thead>
<tbody id="data-frameworks"></tbody>
</table>
</main>
<!-- Complete las instrucciones en el archivo /src/file01.js -->
<script type="module" src="/src/file01.js"></script>
<!-- Cargue el archivo /src/file02.js con el tipo módulo -->
<script type="module" src="/src/file02.js"></script>
</body>
</html>