24 lines
664 B
HTML
24 lines
664 B
HTML
<!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()">×</button>
|
|
</div>
|
|
|
|
<script src="index.js"></script>
|
|
</body>
|
|
</html> |