-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (46 loc) · 2.16 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>brai.la - Timer</title>
<meta name="description" content="Brai.la offers a streamlined experience to boost your productivity. With customizable timers and focused work sessions, Brai.la helps you manage your time effectively and accomplish your tasks efficiently.">
<meta name="keywords" content=" productivity, time management, focus, work sessions, timer, task management, efficiency">
<meta property="og:type" content="website">
<meta property="og:title" content="Brai.la - Timer for Productivity">
<meta property="og:description" content="Brai.la offers a streamlined experience to boost your productivity. With customizable timers and focused work sessions, Brai.la helps you manage your time effectively and accomplish your tasks efficiently.">
<link rel="icon" href="favicon.png" type="image/png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="bat"></div> <!-- Centered bat -->
<h1></h1>
<div id="timer" class="timer">
<div class="time-display">
<span id="minutes">30</span>:<span id="seconds">00</span>
</div>
</div>
<div id="buttons" class="buttons">
<button id="start"><i class="fas fa-play"></i></button>
<button id="stop"><i class="fas fa-stop"></i></button>
<button id="reset"><i class="fas fa-sync-alt"></i></button>
</div>
<div class="settings">
<br>
<h2></h2>
<strong><label for="study-time">Time</label><br></strong>
<input type="range" id="study-time" min="1" max="60" value="30"><br>
<span id="study-value">30</span> minutes
<br>
<br>
<strong><label for="break-time">Break Time</label><br></strong>
<input type="range" id="break-time" min="1" max="30" value="10"><br>
<span id="break-value">10</span> minutes
</div>
<div id="cycles" class="cycles">Completed cycles: 0</div>
</div>
<script src="script.js"></script>
</body>
</html>