forked from sfusurge/DegreeNavigator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
66 lines (55 loc) · 2.1 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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css" />
<!-- Load an icon library to show a hamburger menu (bars) on small screens -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- load the d3.js library -->
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="./data/all_courses_data.js"></script>
<script async src="./script.js"></script>
<!-- load ui scripts -->
<script async src="./ui_script.js"></script>
<title>Degree Navigator</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EWCB2MGR5Z"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-EWCB2MGR5Z');
</script>
</head>
<body>
<!-- The overlay -->
<div id="myNav" class="overlay">
<!-- Button to close the overlay navigation -->
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<!-- Overlay content -->
<div class="overlay-content">
<a href="about.html">about</a>
<a href="https://www.facebook.com/sfusurge/">facebook</a>
<a href="https://www.instagram.com/sfusurge/">instagram</a>
<a href="https://github.com/sfusurge/DegreeNavigator">github</a>
</div>
</div>
<!-- Top Navigation Menu -->
<div class="topnav">
<img src="./assets/logo.svg" class="surgeIcon">
<a href="#home" id="logo">SFU Degree Navigator</a>
<!-- "Hamburger menu" / "Bar icon" to toggle the navigation links -->
<a href="javascript:void(0);" id="button" class="icon" onclick="openNav()">
<i class="fa fa-bars"></i>
</a>
</div>
</body>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<h3 id="modalTitle"></h3>
<p id="modalBody"></p>
</div>
</div>