-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (50 loc) · 2.17 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 charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sicko Mode Pomodoro</title>
<meta name="description" content="A simple pomodoro app that plays Sicko Mode by Drake and Travis Scott once's time done. You can thank me later."/>
<meta name="keywords" content="Pomodoro, study, timer"/>
<meta name="author" content="Rafa"/>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<audio id="song" src="sicko-mode.mp3"></audio>
</head>
<body>
<header>
<a href="https://sicko-mode-pomodoro.vercel.app">
<img width="150px" src="./images/logo.png" alt="logo" class="logo">
</a>
<a href="https://sicko-mode-pomodoro.vercel.app">
<img width="30px" src="./images/reload-icon.png" alt="reload icon" class="reload-icon">
</a>
</header>
<main>
<div class="countdown-wrapper">
<h1 id="countdownDisplay">go ahead!</h1>
<button class="btn btn-primary" id="countdownBtn25min">start 25min session</button>
<button class="btn btn-secondary" id="countdownBtnCustom">select my own time</button>
</div>
<form onsubmit="return false" style="display: none;" class="choose-time" id="chooseTime" action="">
<input autocomplete="off" id="inputTime" type="text">
<button id="setTime" class="btn btn-primary" type="submit">Go!</button>
</form>
<div class="text">
<h2>
Motivation for your study sessions
</h2>
<p>
Set the time and study.<br/>
You'll know when is time for your 5min rest<br/>
(+14secs, probably because of several yeses) once you hear the song.
</p>
</div>
</main>
<footer>
<p>Coded with 💗 by <a class="footer-link" href="https://twitter.com/rafdidact">@rafdidact</a></p>
</footer>
</body>
<script src="/script.js"></script>
</html>