-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.html
30 lines (28 loc) · 834 Bytes
/
todo.html
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
29
30
<!-- index.html -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To Do App</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>To Do App</h1>
<button class="toggle-btn" onclick="toggleDarkMode()">Dark Mode</button>
</header>
<main>
<section>
<ul class="list" id="todo-list">
<!-- To Do items will be dynamically added here -->
</ul>
<form>
<label for="todo-input">Add a new task</label>
<input type="text" id="todo-input" name="todo" placeholder="E.g. Finish homework">
<button type="button" onclick="addTodo()">Add</button>
</form>
</section>
</main>
<script src="ToDoScript.js"></script>
</body>
</html>