-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (48 loc) · 1.31 KB
/
index.html
File metadata and controls
48 lines (48 loc) · 1.31 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!-- Create a todo list -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Todo List</h1>
<div class="container">
<div class="input-container">
<input
type="text"
placeholder="Enter a task"
id="tf-input"
class="textfield"
/>
<button onclick="addTask()" class="button">Add Task</button>
</div>
<div>
<ul id="task-container">
<li id="4344" class="list-item">
Task 1
<button onclick="deleteTask('4344')" class="delete-button">
Delete
</button>
</li>
<li id="4345" class="list-item">
Task 2
<button onclick="deleteTask('4345')" class="delete-button">
Delete
</button>
</li>
<li id="4348" class="list-item">
Task 3
<button onclick="deleteTask('4348')" class="delete-button">
Delete
</button>
</li>
</ul>
</div>
</div>
</body>
<script src="script.js"></script>
<link rel="stylesheet" href="style.css" />
</html>