forked from HackYourFuture/JavaScript2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (56 loc) · 1.22 KB
/
index.html
File metadata and controls
59 lines (56 loc) · 1.22 KB
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
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pomodoro Clock</title>
<style>
body{
background-color: #1F555C;
color: #fff;
font-size: 28px;
text-align: center;
margin: 0;
padding: 0;
}
p{
display: inline;
}
button{
background-color: transparent;
color: #fff;
border: none;
font-size: 20px;
padding: 1rem;
cursor: pointer;
}
#reset{
font-family: Segoe UI Symbol;
}
#app{
border: 2px solid #13363A;
width: 500px;
margin: 0 auto;
border-radius: 20px;
padding-bottom: 10px;
}
</style>
</head>
<h1>Pomodoro Clock</h1>
<h2>session length</h2>
<button id="arrow_down">⇩</button>
<p id="time"></p>
<button id="arrow_up">⇧</button>
<body>
<div id="app">
<h3>session</h3>
<p id="minutes"></p>
<p id="semicolon"></p>
<p id="secounds"></p>
</div>
<button id="reset" title="reset">⏹</button>
<button id="play" title="play">►</button>
<button id="pause" title="pause">❚❚</button>
<script src="./index.js"></script>
</body>
</html>