-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (96 loc) · 3.49 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
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
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="JavaScript Pomodoro Timer" />
<meta name="author" content="Sinan Sarikaya" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
/>
<title>Pomodoro Timer</title>
</head>
<body>
<div class="shadowBg"></div>
<div id="container">
<div class="infoBox">
<div class="infoBox-header">
<h1>What is Pomodoro Technique?</h1>
<i class="fa-solid fa-xmark"></i>
</div>
<ul>
<li><b>STEP 1:</b> Pick a task</li>
<li><b>STEP 2:</b> Set a 25-minute timer</li>
<li>
<b>STEP 3:</b> Work on tour task full concentration and until the
time is up
</li>
<li><b>STEP 4:</b> Take a 5 minute break</li>
<li>
<b>STEP 5:</b> Every 4 pomodoros, take a longer 15 - 20 minute break
</li>
</ul>
</div>
<div class="social">
<button class="timer-info"><i class="fa-solid fa-question"></i></button>
<a
href="https://github.com/sinansarikaya/JavaScript-Pomodoro-Timer"
target="_blank"
><i class="fa-brands fa-github"></i
></a>
<a href="https://www.linkedin.com/in/sinansarykaya/" target="_blank"
><i class="fa-brands fa-linkedin-in"></i
></a>
<a href="https://www.instagram.com/sinan.sarykaya" target="_blank"
><i class="fa-brands fa-instagram"></i
></a>
</div>
<div class="btn-container" id="mode-btns">
<button class="btn active" data-mode="pomodoro">Pomodoro</button>
<button class="btn" data-mode="short">Short Break</button>
<button class="btn" data-mode="long">Long Break</button>
</div>
<div class="timer">
<div class="time">
<span id="minute">25</span>:<span id="second">00</span>
</div>
<svg width="345" height="345">
<circle id="circle1" cx="170" cy="170" r="165"></circle>
<circle id="circle2" cx="170" cy="170" r="165"></circle>
</svg>
</div>
<div class="info">
<span>You are now in pomodoro time</span>
<lord-icon
src="https://cdn.lordicon.com/qtqvorle.json"
trigger="loop"
colors="outline:#ffffff,primary:#646e78,secondary:#1e8194,tertiary:#9ce5f4"
style="width: 50px; height: 50px"
>
</lord-icon>
</div>
<!-- SES EKLENECEK -->
<!-- ARKA PLAN RENKLERI -->
<i class="fa-solid actionBtn fa-play"></i>
<footer id="copyright">
Made with <span style="color: rgb(226, 85, 85)">♥ </span
><b>Sinan Sarıkaya</b>
</footer>
</div>
<script src="https://cdn.lordicon.com/xdjxvujz.js"></script>
<script src="./js/app.js"></script>
</body>
</html>