-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<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=EG+Garamond:wght@400;500;600;700&family=Fira+Sans:wght@400;500;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="./style.css" />
<title>Pomodoro App</title>
</head>
<body>
<div class="app-container">
<h1>pomodoro</h1>
<div class="app-message">press start to begin</div>
<div class="app-circle">
<div class="circle-shape">
<div class="semi-circle right-side circle-mask"></div>
<div class="semi-circle right-side circle"></div>
<div class="semi-circle left-side circle-mask"></div>
<div class="semi-circle left-side circle"></div>
</div>
<div class="app-counter-box">
<p><span class="minutes">25</span>:<span class="seconds">00</span></p>
</div>
<button class="btn-start">start</button>
<button class="btn-reset">reset</button>
<button class="btn-pause">pause</button>
</div>
</div>
</body>
<script src="./app.js"></script>
</html>