IT2805/Exercise 7/todo.html

19 lines
490 B
HTML
Raw Normal View History

2020-10-20 00:14:33 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo</title>
<link rel="stylesheet" href="./todo.css">
<script src="./todo.js" defer></script>
</head>
<body>
<h1 id="title">Todo-list</h1>
<textarea id="todoField" cols="60" rows="2" autofocus ></textarea>
2020-10-20 12:23:35 +02:00
<button id="todoButton">Add task (Enter)</button>
2020-10-20 00:14:33 +02:00
<div id="todoSummary"></div>
<ul id="todoList"></ul>
</body>
</html>