-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
33 lines (32 loc) · 1.33 KB
/
main.html
File metadata and controls
33 lines (32 loc) · 1.33 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
<html>
<link rel="stylesheet" href="style.css">
<title>Pomodoro Timer</title>
<center>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com"/>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="use-credentials"/>
<link href="https://fonts.googleapis.com/css2?family=EG+Garamond:wght@400;500;600;700&family=Fira+Sans:wght@400;500;600;700&family=Libertinus+Serif:wght@400;500;600;700&display=swap" rel="stylesheet" />
</head>
<body>
<div class="app">
<h1>Pomodoro</h1>
<div class="mssg">press to start</div>
<div class="app-circle">
<div class="shape">
<div class="sc r-side circle-mask"></div>
<div class="sc r-side circle"></div>
<div class="sc l-side circle-mask"></div>
<div class="sc l-side circle"></div>
</div>
<div class="counter">
<p><span class="min">0</span>:<span class="sec">15</span></p>
</div>
<button class="start"><span id="button">start</span></button>
<audio id="bgm" src="mixkit-tick-tock-clock-close-up-1059.wav"></audio>
<audio id="end" src="mixkit-airport-announcement-ding-1569.wav"></audio>
</div>
</div>
</body>
</center>
<script src="app.js"></script>
</html>