-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (37 loc) · 1.24 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>
<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" stroke-dasharray="1595.78"/>
</svg>
</div>
<div class="timer">
<div class="time">
<div>
<input type="text" value="15" disabled id="minutes"/>
</div>
<div class="colon">:</div>
<div>
<input type="text" value="00" disabled id="seconds"/>
</div>
</div>
<button class="start">start</button>
<button class="stop hide">stop</button>
<audio src="https://docs.google.com/uc?export=download&id=0B1JWgtmgZmMgMzNlNzYxNTgtY2NhNS00ODc1LWI1YTgtYTlhNzkxOTE1NDQ5" id="audio" controls style="display: none;"></audio>
<button class="settings">
<img src="images/gear.svg" alt="Settings" />
</button>
</div>
</div>
<script src="app.js"></script>
</body>
</html>