-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (65 loc) · 1.98 KB
/
Copy pathindex.html
File metadata and controls
73 lines (65 loc) · 1.98 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!doctype html>
<html lang="uz">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="Mini-utility-logo.png" />
<title>Daily Utility Planner</title>
<link rel="stylesheet" href="style.css" />
</head>
<!-- Hi there! -->
<body>
<div class="container">
<h1>Daily Utility Planner</h1>
<div class="todo">
<h2>Todo List</h2>
<div class="input-group">
<input type="text" id="taskInput" placeholder="Enter a new task..." />
<button id="addTask">Add</button>
</div>
<ul id="taskList"></ul>
<button id="clearAll">Clear All</button>
</div>
<div class="timer">
<h2>Pomodoro Timer</h2>
<p id="timeDisplay">25:00</p>
<button id="startStop">Start</button>
<button id="reset">Reset</button>
</div>
<div class="music-section">
<h2>Focus Music</h2>
<input
type="file"
id="musicUpload"
accept="audio/*"
style="display: none"
/>
<div class="music-controls">
<p id="trackName">Current: Default Focus Track</p>
<div class="volume-container">
<span>Volume:</span>
<input
type="range"
id="volumeControl"
min="0"
max="1"
step="0.1"
value="0.5"
/>
</div>
<div class="button-group">
<button id="customUploadBtn">Upload Music</button>
<button id="playPauseMusic">Play Music</button>
</div>
</div>
<audio id="audioPlayer" src="focus.mp3" loop></audio>
</div>
<div class="motivation">
<h2>Motivational Tip</h2>
<p id="motivationText">Loading...</p>
<button id="newMotivation">Next Tip</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>