-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
35 lines (30 loc) · 1.03 KB
/
popup.html
File metadata and controls
35 lines (30 loc) · 1.03 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vocab Master</title>
<link href="css/font-awesome.min.css" rel="stylesheet" />
<link href="css/popup.css" rel="stylesheet" />
</head>
<body style="text-align: center">
<div class="quote-container" style="display: none;">
<blockquote class="note yellow">
<div class="container">
</div>
<div class="actions">
<div class="do-not-show-again">
<span><i class="fa fa-times-circle-o"></i> No need to remind this</span>
</div>
<div class="show-again">
<span>Remind again <i class="fa fa-refresh"></i></span>
</div>
</div>
</blockquote>
</div>
<script src="jquery.min.js"></script>
<script src="hash-code.js"></script>
<script defer src="vocabulary-globish.js"></script>
<script defer src="vocabulary-gre.js"></script>
<script defer src="popup.js"></script>
</body>
</html>