Skip to content

Instantly share code, notes, and snippets.

@furenku
Last active June 30, 2018 18:22
Show Gist options
  • Save furenku/ce4fd7dd27626d2f663527e7639d76f4 to your computer and use it in GitHub Desktop.
Save furenku/ce4fd7dd27626d2f663527e7639d76f4 to your computer and use it in GitHub Desktop.
todolist
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>LocalStorage</title>
<style>
.tasks ul {
margin: 0;
padding: 0;
}
.tasks li {
display: flex;
width: 100%;
margin: 0;
}
.tasks li > * {
padding: 8px;
}
.tasks li .text {
/* w60p */
width: 60%;
}
.tasks li .time,
.tasks li .duration
{
/* w20p */
width: 20%;
text-align: right;
}
</style>
</head>
<body>
<main>
<form action="">
<label>
<div>
Tarea
</div>
<input type="text" name="task">
</label>
<label>
<div>
Fecha de entrega
</div>
<input type="text" name="time">
</label>
<label>
<div>
Duración
</div>
<input type="text" name="duration">
</label>
<input type="submit" valor="Enviar">
</form>
<section class="tasks">
<ul></ul>
</section>
</main>
<script src="js/main.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment