-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (33 loc) · 1.24 KB
/
index.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Listado de Proyectos</title>
<!-- estilos del proyecto -->
<link rel="stylesheet" href="css/estilos.css">
<link href="https://fonts.googleapis.com/css2?family=Prompt:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>
<body>
<div class="container">
<div class="perfil">
<div id="fecha"></div>
<h1><center>Bienvenido(a):</center>
<br>vamos a listar tus tareas</h1>
<span><center>Así programamos tus metas...</center></span>
</div>
<div class="agregar-tarea">
<input type="text" id="input" placeholder="agregar una tarea">
<i id="boton-enter"class="fas fa-plus-circle"></i>
</div>
<div class="seccion-tarea">
<h3>Estas son tus objetivos pendientes... </h3>
<ul id="lista">
</ul>
</div>
</div>
<!-- script del proyecto -->
<script src="js/script.js"></script>
</body>
</html>