Last active
June 30, 2018 18:22
-
-
Save furenku/ce4fd7dd27626d2f663527e7639d76f4 to your computer and use it in GitHub Desktop.
todolist
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
<!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