-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (39 loc) · 1.22 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Unyielding Pomodoro</title>
<link href="//cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css"
rel="stylesheet" type="text/css">
<link href="//fonts.googleapis.com/css?family=Lato:400,700"
rel="stylesheet" type="text/css">
<link href="style/main.css"
rel="stylesheet" type="text/css">
</head>
<body>
<header>
<h2>Unyielding Pomodoro</h2>
</header>
<section>
<h1 class="working-message">
▸ Time to work as hard as you can! ◂
</h1>
<h1 class="pause-message">
▹ Relax now, stretch a bit, walk a little. ◃
</h1>
</section>
<section>
<div id="minutes"></div>
<div id="seconds"></div>
</section>
<footer>
<p>
<a href="https://github.com/BrunoCartier/unyielding-pomodoro">Github</a> |
<a href="http://deur.co">Author</a>
</p>
</footer>
<script src="//cdn.rawgit.com/lugolabs/circles/63b38de34d3e9b1fc5ee992f51f50976090cf019/circles.min.js"></script>
<script src="scripts/utils.js"></script>
<script src="scripts/main.js"></script>
</body>
</html>