-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (39 loc) · 1.68 KB
/
index.html
File metadata and controls
49 lines (39 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./css/index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.10.3/font/bootstrap-icons.min.css" rel="stylesheet">
</head>
<body id="bodyPrincipal">
<div>
<button class="boton-circular"></button>
</div>
<container class="pantalla">
<div class="menu-opciones">
<button id="eliminarNota">Eliminar nota<i class="bi bi-trash" style="font-size: 20px; color: white;"></i></button>
<div class="linea-separacion"></div>
</div>
<header class="headerP1">
<p id=""><i class="fas fa-chevron-left"></i>Carpetas</p>
<i id="opciones" class="bi bi-three-dots"></i>
</header>
<h3>Notas</h3>
<div class="search-container">
<i class="fas fa-search"></i> <!-- Icono de búsqueda -->
<input type="text" placeholder="Buscar">
</div>
<div id="notas"></div>
<footer class="footer">
<p id="cantNotas">0 notas</p>
<button id="nuevaNota" class="bi bi-plus-circle" href="nuevaNota.html"></button>
</footer>
</container>
<script type="module" src="./js/index.js"></script>
<script type="module" src="./js/app.js"></script>
</body>
</html>