-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpopup.html
32 lines (27 loc) · 811 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>coupon</title>
<!-- CSS only -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<style>
* {
margin: 0;
padding: 0;
}
body {
width: 70px;
height: 80px;
}
</style>
</head>
<body>
<ul class="nav nav-pills nav-stacked">
<li role="presentation"><a href="#" id="startRecord"><span class="glyphicon glyphicon-record" aria-hidden="true"></span> On</a></li>
<li role="presentation"><a href="#" id="stopRecord"><span class="glyphicon glyphicon-pause" aria-hidden="true"></span> Off</a></li>
</ul>
<script src="popup.js"></script>
</body>
</html>