Last active
January 12, 2021 09:59
-
-
Save ismaelrak/b9b0b853cb43690541d4668ee9670643 to your computer and use it in GitHub Desktop.
HTML TO-DO LISTA
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html lang="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" | |
integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog==" | |
crossorigin="anonymous" /> | |
<link rel="stylesheet" href="./estilos.css"> | |
<title> Lista To-Do</title> | |
</head> | |
<body> | |
<!-- TITULO --> | |
<header> | |
<h1>Tareas que Hacer</h1> | |
</header> | |
<!-- CAMPO PARA INTRODUCIR TAREA--> | |
<form> | |
<input type="text" placeholder="Inserta tu tarea" class="todo_input" /> | |
<button class="todo_button" type="submit"> | |
<i class="fas fa-plus-square"></i> | |
</button> | |
<div class="select"> | |
<select name="todos" class="filter_todo"> | |
<option value="all">Todo</option> | |
<option value="completed">Completado</option> | |
<option value="uncompleted">Incompleto</option> | |
</select> | |
</div> | |
</form> | |
<!-- CONTENEDOR PARA MOSTAR LA LISTA AÑADIENDO TAREAS DINACAMENTE USANDO JAVASCRIPT --> | |
<div class="todo_container"> | |
<ul class="todo_list"></ul> | |
</div> | |
<!-- ENLACE JAVASCRIPT --> | |
<script src="./funcionalidades.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment