-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (33 loc) · 1.21 KB
/
Copy pathindex.html
File metadata and controls
37 lines (33 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pomodoro Timer</title>
<!-- CSS -->
<link rel="stylesheet" href="style.css">
<!-- FontAwesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<div class="container-fluid">
<h1 class="head">Pomodoro Timer</h1>
<div id="box">
<button id="plus" class="pm-btn"><i class="fa fa-plus-circle"></i></button>
<button id="minus" class="pm-btn"><i class="fa fa-minus-circle"></i></button>
<div id="timer" class="slice">
<h1 id="display">25:00</h1>
</div>
<div>
<button id="start" class="button"><i class="fa fa-play-circle-o fa-4x"></i></button>
<button id="pause" class="button"><i class="fa fa-pause-circle-o fa-4x"></i></button>
<button id="reset" class="button"><i class="fa fa-refresh fa-4x"></i></button>
</div>
</div>
</div>
<!-- JS -->
<script src="script.js"></script>
</body>
</html>