-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
47 lines (34 loc) · 1.44 KB
/
index.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
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE HTML>
<html>
<head>
<title>Harker GPA</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="description" content="Harker GPA Calculator">
<meta name="author" content="HarkerDev">
<link href="https://fonts.googleapis.com/css?family=Lexend+Deca|Roboto" rel="stylesheet">
<link href="main.css?v=2" rel="stylesheet">
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-136862177-4', 'auto');
ga('send', 'pageview');
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
</head>
<body>
<h1>Harker GPA Calculator</h1>
<input type="submit" id="isWeighted" value="Harker Weighted" />
<form id="classList">
<div id="semList">
</div>
<button type="button" id="addSemButton" onclick="addSemester()">Add New Semester</button>
<button type="button" id="removeSemButton" onclick="removeLastSemester()" style="display:none">Remove Semester</button>
<button type="button" id="calcGPA" onclick="submitForm()">Calculate GPA</button>
</form>
<p id="gpa"></p>
<p style="font-size: 12px;">
Made with <> by <a href="https://dev.harker.org/?utm_source=gpa&utm_medium=madeby" target="blank">HarkerDev</a>.
</p>
<script src="script.js?v=3"></script>
</body>
</html>