-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimer.htm
More file actions
28 lines (25 loc) · 761 Bytes
/
timer.htm
File metadata and controls
28 lines (25 loc) · 761 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
28
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Task Timer</title>
<link rel="stylesheet" type="text/css" href="timer.css">
<link href="https://fonts.googleapis.com/css?family=Exo:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
</head>
<body>
<div id="timer" class="page">
<h1 id="currenttask">Taskname</h1>
<div id="timeleft" alt="click to pause">00:00</div>
<div id="back">×</div>
</div>
<div id="setup" class="page">
<input id="taskname" placeholder="Task name"/>
<input id="minutes" type="number" step="1" value="10" />
<button id="start">Start</button>
</div>
<div id="drag"></div>
<script>
require('./timer.js')
</script>
</body>
</html>