-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
50 lines (42 loc) · 1.35 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>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<title>Pomodoro widget</title>
<!-- Search engine SEO meta tags -->
<meta
name="keywords"
content="Pomodoro Timer, Pomodoro Widget, Pomodoro, OBS Pomodoro, OBS Timer, OBS Studio,akashgiri.com,Akash Giri,akashgiri,akashgiricse,Akash,Giri,Software Engineer,Software Developer, Online Educator"
/>
<meta
name="description"
content="Pomodoro timer widget for OBS studio."
/>
<meta name="author" content="Akash Giri" />
</head>
<body>
<script src="countdown.js"></script>
<div class="container">
<button id="tomato" type="button" onclick="updateDuration()">
🍅
</button>
<div id="countdown"><a id="start-timer-display">50</a>:00</div>
<div class="buttons">
<button type="button" onclick="playPauseCountdown()">
<div class="imageContainer">
<img id="playPause" src="playButton4x.png">
</div>
</button>
<button type="button" onclick="restartCountdown()">
<div class="imageContainer" id="resetButton">
<img src="resetButton4x.png">
</div>
</button>
</div>
<audio id="yoScottAudio">
<source src="YoScott.m4a" type="audio/mpeg">
</audio>
</div>
</body>
</html>