-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
32 lines (28 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="./styles/output.css">
<title>Demarest GPA</title>
</head>
<body id="root" class="w-[350px] h-56 bg-bgcolor">
<div class="p-6 text-center">
<div>
<h1 class="text-yellow-300 text-2xl pb-4">Demarest GPA Calculator</h1>
<h6 class="text-white text-base leading-none pb-2 italic">Tip: click displayed gpa to see your potential GPA</h6>
<h6 class="text-white text-base leading-tight pb-2">Developed by © Inpyo Lee, aka Jay Lee</h6>
<h6 class="text-blue-200 text-base leading-tight pb-2">Version 3.1</h6>
</div>
<hr>
<div class="p-4">
<button id="gpa_calc" class=" bg-green-600 hover:bg-green-700 px-6 py-2 text-white text-base rounded-full"
type="button" name="button">CALCULATE ✔
</button>
</div>
</div>
</body>
<!-- Compiled and minified JavaScript -->
<script type="text/javascript" src="./build/jquery.min.js"></script>
<script type="text/javascript" src="popup.js"></script>
</html>