-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
41 lines (38 loc) · 861 Bytes
/
popup.html
File metadata and controls
41 lines (38 loc) · 861 Bytes
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 name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Popup</title>
<style>
p {
display: inline;
font-size: 40px;
text-align: center;
}
body {
width: 300px;
height: 200px;
background-color: tomato;
}
#main {
color: bisque;
}
.wrapper {
display: flex;
justify-content: center;
}
</style>
</head>
<body>
<div id="main">
<h1 style="text-align: center">Timer:</h1>
<br />
<p id="hours">0h</p>
<p id="mins">0m</p>
<p id="secs">0s</p>
<div id="buttonbox" class="wrapper"></div>
</div>
<script src="./timer.js"></script>
</body>
</html>