summaryrefslogtreecommitdiff
path: root/graphs/js/todoList/index.html
blob: 116cd2c55b6c7c6873176e8ac88a2711e0ace4c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en" >
	<head>
		<meta charset="utf-8">
		<title>My To-do List</title>
		<script src="todoList.js" defer></script>
		<link rel="stylesheet" href="style.css">
	</head>
	<body>
		<h1>My To-do List</h1>
		<div>
			<input id="textBox" type="text" placeholder="Enter a task...">
			<button id="addButton">Add Item</button>
		</div>
		<ul id="todoList"></ul>
	</body>
</html>