-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 962 Bytes
/
index.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
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Focus Task Timer</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Focus Timer</h1>
<!-- Timer Section -->
<div id="timer">
<span id="time">25:00</span>
<button id="startStop">Start</button>
<button id="reset">Reset</button>
<div>
<input type="number" id="minutes" placeholder="Minutes" min="0" />
<input type="number" id="seconds" placeholder="Seconds" min="0" max="59" />
<button id="set-timer">Set Timer</button>
</div>
</div>
<!-- Task List Section -->
<h2>Task List</h2>
<div id="task-section">
<input type="text" id="new-task" placeholder="New task..." />
<button id="add-task">Add Task</button>
</div>
<ul id="task-list"></ul>
<script src="renderer.js"></script>
</body>
</html>