-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (41 loc) · 1.61 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
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pomodoro Timer</title>
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet" />
<!-- logo link with boxicons -->
<link href="https://unpkg.com/[email protected]/css/boxicons.min.css" rel="stylesheet" />
<!-- Stylesheet -->
<link rel="stylesheet" href="pomodoro-timer.css" />
<link rel="shortcut icon" href="/wallpaper/timer-regular-24.png" type="image/x-icon">
</head>
<body>
<div class="container-timer">
<a id="changeBg"><i class="bx bx-landscape"></i></a>
<div class="container">
<div class="section-container">
<button id="focus" class="btn btn-timer btn-focus">Focus</button>
<button id="shortbreak" class="btn btn-shortbreak">Short Break</button>
<button id="longbreak" class="btn btn-longbreak">Long Break</button>
</div>
<div class="time-btn-container">
<span id="time"></span>
<div class="btn-container">
<button id="btn-start" class="show">Start</button>
<button id="btn-pause" class="hide">Pause</button>
<button id="btn-reset" class="hide">
<i class="fa-solid fa-rotate-right"></i>
</button>
</div>
</div>
</div>
</div>
<!-- Script -->
<script src="pomo-timer.js"></script>
<script src="pomodoro-timer-bg.js"></script>
</body>
</html>