-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (39 loc) · 955 Bytes
/
index.html
File metadata and controls
42 lines (39 loc) · 955 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task Manager</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Task Manager</h1>
</header>
<main>
<form>
<input type="text" placeholder="Enter a new task">
<button type="button">Add Task</button>
</form>
<ul class="task-list">
<li>
Finish portfolio website
<div class="actions">
<button>Edit</button>
<button class="delete">Delete</button>
</div>
</li>
<li>
Apply for internship
<div class="actions">
<button>Edit</button>
<button class="delete">Delete</button>
</div>
</li>
</ul>
</main>
<footer>
<p>© 2025 Task Manager | Built with HTML & CSS</p>
</footer>
</body>
</html>