-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
42 lines (38 loc) · 1.29 KB
/
popup.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">
<title>Popup</title>
<link href='https://fonts.googleapis.com/css?family=Nunito'
rel='stylesheet'>
<link rel="stylesheet" href="/styles/popup.css">
</head>
<body>
<h4>What do you call a software engineer doing squats?</h4>
<p id="quip"></p>
<div id="timer">
<p id="small">hours : minutes : seconds</p>
<div>
<input id="hours" type="number" class="timer_part" maxlength="2"
min="00" max="23" value="0">
<span>:</span>
<input id="minutes" type="number" class="timer_part" maxlength="2"
min="00" max="59" value="0">
<span>:</span>
<input id="seconds" type="number" class="timer_part" maxlength="2"
min="00" max="59" value="0">
</div>
<ul>
<li><a href="#" class="button" id="timer_start">Start</a></li>
<li><a href="#" class="button disabled" id="timer_stop">Cancel</a></li>
</ul>
<p>How many squats  <input id="numsquats" style="width: 50px;"
type="number" min="0" value="2"></p>
</div>
<div id="bottom">
<img src="styles/squat.png" alt="posture" width="100" height="auto">
<h4>A back-end developer</h4>
</div>
<script src="js/popup.js"></script>
</body>
</html>