-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (84 loc) · 2.91 KB
/
index.html
File metadata and controls
93 lines (84 loc) · 2.91 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<title>Javascript Pomodoro Clock</title>
<meta charset="UTF-8" />
<link
href="https://fonts.googleapis.com/css?family=DM+Sans|Sniglet&display=swap"
rel="stylesheet"
/>
<link href="styles.css" rel="stylesheet" />
<script src="https://kit.fontawesome.com/c8ade313f5.js"></script>
</head>
<body>
<section class="container">
<h1 class="main-header">Pomodoro Clock</h1>
<div class="grid">
<div class="sessions">
<div id="session-decrement">
<i class="fas fa-3x fa-angle-down up-down-buttons"></i>
</div>
<div id="session-length" class="numbers">25</div>
<div id="session-increment">
<i class="fas fa-3x fa-angle-up up-down-buttons"></i>
</div>
<div id="session-label">Session Length</div>
</div>
<div class="breaks">
<div id="break-decrement">
<i class="fas fa-3x fa-angle-down up-down-buttons"></i>
</div>
<div id="break-length" class="numbers">5</div>
<div id="break-increment">
<i class="fas fa-3x fa-angle-up up-down-buttons"></i>
</div>
<div id="break-label">Break Length</div>
</div>
<div class="timer">
<div id="timer-label"></div>
<div id="time-left" class="countdown">00:00</div>
</div>
<div class="buttons">
<div id="start-stop">
<i class="fas fa-3x fa-play-circle"></i>
<i class="fas fa-3x fa-pause-circle toggle-hide"></i>
</div>
<div id="reset"><i class="fas fa-3x fa-redo"></i></div>
</div>
</div>
<div class="circle"><div class="progress-circle"></div></div>
</section>
<footer class="attributions">
<p>
By
<a href="https://github.com/ann-codes" target="_blank">Ann Nguyen</a>
for
<!--
<a href="https://learn.freecodecamp.org/front-end-libraries/front-end-libraries-projects/build-a-pomodoro-clock/" target="_blank">Free Code Camp</a>
and -->
<a
href="https://www.theodinproject.com/courses/web-development-101/lessons/pairing-project"
target="_blank"
>The Odin Project</a
>.<br />
<span
>Made using
<a href="https://fontawesome.com/" target="_blank">Font Awesome</a>,
and
<a href="http://soundbible.com/1619-Music-Box.html" target="_blank"
>Soundbible</a
>. <br />
Learn about the
<a
href="https://en.wikipedia.org/wiki/Pomodoro_Technique"
target="_blank"
>Pomodoro Technique</a
>
to be more productive!.
</span>
</p>
</footer>
<!-- <script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script> -->
<script src="app.js"></script>
</body>
</html>