-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (35 loc) · 1.01 KB
/
index.html
File metadata and controls
41 lines (35 loc) · 1.01 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
<!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">
<title>01 - Pomodoro || Advent of JavaScript</title>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div class="wrapper">
<div class="ring">
<svg width="518" height="518" viewBox="0 0 518 518">
<circle stroke-width="9px" x="0" y="y" cx="259" cy="259" r="254" />
</svg>
</div>
<div class="timer">
<div class="time">
<div class="minutes">
<input type="text" value="15" disabled/>
</div>
<div class="colon">:</div>
<div class="seconds">
<input type="text" value="00" disabled/>
</div>
</div>
<button class="start">start</button>
<button class="settings">
<img src="images/gear.svg" alt="Settings" />
</button>
</div>
</div>
<script src="./js/app.js"></script>
</body>
</html>