-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
24 lines (24 loc) · 905 Bytes
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Teresha's TO-DO 🎀</title>
<link rel="stylesheet" href="popup.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>
<body class="dark-fantasy-theme">
<div class="container">
<h1>Teresha's TO-DO 🎀</h1>
<input type="text" id="taskInput" placeholder="Add new task...">
<select id="categorySelect">
<option value="dsa"><i class="fas fa-code"></i> DSA</option>
<option value="dev"><i class="fas fa-laptop-code"></i> Development</option>
<option value="personal"><i class="fas fa-user"></i> Personal</option>
</select>
<button id="addTaskBtn">Add Task</button>
<ul id="taskList"></ul>
</div>
<script src="popup.js"></script>
</body>
</html>