-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtimer.html
More file actions
28 lines (27 loc) · 799 Bytes
/
timer.html
File metadata and controls
28 lines (27 loc) · 799 Bytes
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
<!doctype html>
<html>
<head>
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: https://developer.chrome.com/extensions/contentSecurityPolicy
-->
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<div id="container">
<h1>Tomato</h1><small>Your Pomodoro Helper</small>
<div id="current-state">
<h2 id="current-time"></h2>
</div>
<div id="controls">
<div class="controls-buttons-group">
<button type="button" id="stop">stop</button>
</div>
</div>
</div>
<script type="text/javascript" src="moment.js"></script>
<script src="timer.js"></script>
</body>
</html>