-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 949 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 949 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-Do List</title>
<script src="https://kit.fontawesome.com/552610a3f9.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Task Master</h1>
<div id="new_task">
<input type="text" placeholder="Enter your task..." id="task_input">
<input type="time" id="task_time">
<button id="push">Add Task</button>
</div>
<div id="progress-bar">
<div id="progress"></div>
</div>
<div class="tasks"></div>
</div>
<audio id="sound-add" src="/assets/add-sound.mp3"></audio>
<audio id="sound-complete" src="/assets/complete-sound.mp3"></audio>
<audio id="sound-delete" src="/assets/delete-sound.mp3"></audio>
<script src="script.js"></script>
</body>
</html>