-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 794 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Developer's Todo App</title>
<link rel="stylesheet" href="styles.css" />
<script src="script.js" defer></script>
</head>
<body>
<div class="container">
<h1>Developer's Todo List</h1>
<button id="mode">dark</button> <!--Mode-->
<h2 id="itemcount">Number of Tasks: </h2>
<form id="todo-form">
<input
type="text"
id="todo-input"
placeholder="Add a new task..."
required
/>
<button type="submit" id="add">Add Task</button>
</form>
<ul id="todo-list"></ul>
</div>
<script src="script.js"></script>
</body>
</html>