-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
69 lines (61 loc) · 2.51 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<title>Letter Grade Calculator</title>
<meta http-equiv=“Pragma” content=”no-cache”>
<meta http-equiv=“Expires” content=”-1″>
<meta http-equiv=“CACHE-CONTROL” content=”NO-CACHE”>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,500;1,700&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="hero header">
<div class="hero-body">
<div class="container">
<h1 class="title">
Letter Grade Calculator
</h1>
<h2 class="subtitle">
For PHIL 279 & 379 - University of Calgary
</h2>
</div>
</div>
</section>
<div class="tabs course-select is-centered is-toggle is-toggle-rounded is-toggle-rounded-seperate">
<ul></ul>
</div>
<script src="course.js?202303130318"></script>
<script src="index.js?202303130318"></script>
<footer class="footer">
<div class="content has-text-centered">
<p>
<strong>Letter Grade Calculator</strong> source code can be found on <a
href="https://github.com/CloudyYoung/phil-letter-grade-calculator">Github</a>.
</p>
<p>
<a href="https://bulma.io">
<img src="https://bulma.io/images/made-with-bulma--black.png" alt="Made with Bulma" width="128"
height="24">
</a>
</p>
</div>
</footer>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-7S6TN85C89"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-7S6TN85C89');
</script>
</body>
</html>