-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (63 loc) · 1.99 KB
/
index.html
File metadata and controls
73 lines (63 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pomodoro Timer</title>
<!-- Font Awesome Icons -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap"
rel="stylesheet"
/>
<!-- Stylesheet -->
<link rel="stylesheet" href="style.css" />
<!-- Script 1 -->
<script src="todo.js"></script>
</head>
<body>
<!-- Pomodoro Timer -->
<div class="container-timer">
<h1>Pomodoro Timer</h1>
<div class="section-container">
<button id="focus" class="btn btn-timer btn-focus">Focus</button>
<button id="break" class="btn btn-break">Break</button>
</div>
<div class="time-btn-container">
<div id="time" class="timer">
<span class="minutes" data-minutes="25">25</span>:<span class="seconds" data-seconds="00">00</span>
</div>
<div class="btn-container">
<button id="btn-start" class="show">
<i class="fa fa-play" aria-hidden="false"></i>
</button>
<button id="btn-pause" class="hide">
<i class="fa fa-pause" aria-hidden="true"></i>
</button>
<button id="btn-reset" class="hide">
<i class="fa-solid fa-rotate-right"></i>
</button>
</div>
</div>
</div>
<!-- To-Do-List -->
<div class="container-tdl">
<h1>To-Do List</h1>
<div class="container-tdl2">
<form>
<input type="text" id="todo-input"
placeholder="Add Your Task" autocomplete="off">
<button id="add-btn">ADD</button>
</form>
<ul id="todo-list">
<li class="todo">
</li>
</ul>
</div>
</div>
<!-- Script 2 -->
<script src="pomodoro.js"></script>
</body>
</html>