-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
36 lines (36 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<div class="outer">
<h1>Move <img src="./images/R.svg">eminder</h1>
<div class="timeCheck">
<h2>Select the time:</h2>
<div id="buttonOuter" class="buttonWrapper">
<button value="10000">10s</button>
<button value="1800000">30min</button>
<button value="2700000">45min</button>
<button value="3600000">60min</button>
<button value="5400000">90min</button>
<button value="7200000">120min</button>
</div>
</div>
<div>
<button class="start">START</button>
</div>
<div class="description">
<ul>
<li><a href="./options.html">Why should I start?</a></li>
<li><a href="./options.html">How often to exercise?</a></li>
<li><a href="./options.html">Simple examples</a></li>
</ul>
</div>
</div>
<div id="popup">
<p class="innerPopup">TEXT PLACEHOLDER</p>
</div>
<script src="popup.js"></script>
</body>
</html>