-
Notifications
You must be signed in to change notification settings - Fork 64
/
index.html
28 lines (28 loc) · 895 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tomato Timer</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>🍅 Tomato Timer ⏰</h1>
<div id="timer-display">
<span id="time-left">25:00</span>
</div>
<div id="buttons">
<button id="study-btn">Study</button>
<button id="break-btn">Break</button>
<button id="start-stop-btn" style="display: none;">Start/Stop</button>
</div>
<div id="session-count">
<p>Study Sessions: <span id="study-count">0</span></p>
<p>Break Sessions: <span id="break-count">0</span></p>
</div>
<div id="theme-selector" style="display: none;">
<button id="light-theme">Light</button>
<button id="dark-theme">Dark</button>
</div>
</div>
</body>
</html>