-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (36 loc) · 1.47 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
<!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.cdnfonts.com/css/public-pixel" rel="stylesheet">
<link rel="stylesheet" href="./style.css" />
<title id="timer-title">Pomodoro App</title>
</head>
<body>
<video autoplay muted loop id="video-bg">
<source src="/imgs/blue1.mp4" type="video/mp4">
</video>
<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>
</div>
</div>
<div class="git-profile">
<img src="/imgs/github-icon.png">
<a class="git-user" href="https://github.com/CS-DaviMagalhaes">CS-DaviMagalhaes</a>
</div>
</body>
<script src="app.js"></script>
</html>