-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
29 lines (27 loc) · 846 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
<html>
<head> <!--specifies metadata -->
<title> Lecture Download </title>
<style>
/* specifies to the runtime environment that this is css*/
button {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body>
<!-- This actually adds the button element -->
<button id="mybutton"> Download Lectures! </button>
<!-- The javascript script that is called when the
button is pressed -->
<script src="src/popup.js"></script>
</body>
</html>