-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
28 lines (26 loc) · 1021 Bytes
/
Index.html
File metadata and controls
28 lines (26 loc) · 1021 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-200">
<div class="">
<div class="container mx-auto">
<div class="py-4">
<div class="flex items-center justify-between">
<h1 class="text-2xl font-bold text-gray-800">Aprendiendo JS Moderno</h1>
<input id="search-box" type="text" class="py-1 rounded-lg ">
</div>
<p>El objetivo de este index es poder navegar entre todas las carpetas de una manera mucho mas comoda y fluida.</p>
<p>Lo ideal seria generar el index de manera automatica, pero eso requiere de node y para terminos practicos no lo tenemos.</p>
</div>
</div>
<div class="container mx-auto">
<div id="app"></div>
</div>
</body>
<script type="module" src="app.js"></script>
</html>