-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
37 lines (34 loc) · 889 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
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google Classroom Chrome extention</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans" type="text/css">
<link rel="stylesheet" type="text/css" href="mystyle.css">
<script type="text/javascript" src="index.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="popup.js"></script>
</head>
<body>
<div>
<table>
<tr>
<td class = "title" color="black">
Google Classroom
<hr >
</td>
</tr>
</table>
<table>
<tbody id="myTable">
</tbody>
</table>
<table>
<tbody id="myTable2">
</tbody>
</table>
<script type="text/javascript" src="popup.js"></script>
</div>
</body>
</html>