-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudy.html
More file actions
28 lines (24 loc) · 809 Bytes
/
Copy pathstudy.html
File metadata and controls
28 lines (24 loc) · 809 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"/>
<title>Study Session</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<audio id="alarmSound" src="alarm.mp3" preload="auto"></audio>
<h2 id="studySubject">Studying</h2>
<div class="timer-box">
<label>Set Timer (minutes):</label>
<input type="number" id="timerInput" value="30" min="1">
<div id="timerDisplay" style="font-size:36px; text-align:center; margin:12px 0;">00:00</div>
<div style="display:flex; gap:8px;">
<button id="startTimerBtn">Start</button>
<button id="stopTimerBtn" disabled>Stop</button>
<button id="backBtn">Back</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>