-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (38 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<title>Get the F**k to Work</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="main.js"></script>
</head>
<body>
</html>
<div id="header">
<h1>Hey! Let's get to work</h1>
<h3>What do you want to get done today?</h3>
</div>
<div id="task-input">
<!--<form action="demo_form.asp">-->
<input type="text" name="task" placeholder="e.g.Take over the World">
<button type="button" id="new_task_button" onclick="make_task()">Add Task</button>
<!--</form>-->
</div>
<div id="workspace">
<div id="tasks">
</div>
<div id="timer">
<h1 id="time-left">Time until break:</h1>
<div id="clockdiv">
<div>
<span class="minutes"></span>
<div class="smalltext">Minutes</div>
</div>
<div>
<span class="seconds"></span>
<div class="smalltext">Seconds</div>
</div>
</div>
</div>
</div>
</body>