-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (36 loc) · 1.12 KB
/
index.html
File metadata and controls
46 lines (36 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ToDo List</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="todo-card">
<h2>ToDo List 📝</h2>
<div class="input-group">
<input type="text" placeholder="Add Your Task">
<button>+</button>
</div>
<p class="message">Todo Item Created Successfully.</p>
<ul class="todo-list">
<li class="todo-item">
<span>Edit Project Video</span>
<div class="actions">
<button>✏️</button>
<button>🗑️</button>
</div>
</li>
<li class="todo-item">
<span>Upload Project Video</span>
<div class="actions">
<button class="edit-btn">✏️</button>
<button class="delete-btn">🗑️</button>
</div>
</li>
</ul>
</div>
<script src="main.js"></script>
</body>
</html>