Miniprojects/Todo-app/index.html

24 lines
664 B
HTML
Raw Permalink Normal View History

2020-09-30 11:02:31 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo app</title>
<link rel="stylesheet" href="style.css">
<link href='https://fonts.googleapis.com/css?family=Open Sans' rel='stylesheet'>
</head>
<body>
<div class="header">
<input type="text" id="todo-input" class="input" placeholder="Add Task" autocomplete="off">
</div>
<ul id="todo-list"></ul>
<div class="lower-bottom">
<button onclick="resetLocalStorage()">&times;</button>
</div>
<script src="index.js"></script>
</body>
</html>