forked from sfusurge/DegreeNavigator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
74 lines (65 loc) · 3.23 KB
/
about.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
70
71
72
73
<!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">
<title>about</title>
<!-- load ui scripts -->
<script async src="./ui_script.js"></script>
<!-- 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</a>
<a href="https://www.facebook.com/sfusurge/" target="_blank">facebook</a>
<a href="https://www.instagram.com/sfusurge/" target="_blank">instagram</a>
<a href="https://github.com/sfusurge/DegreeNavigator" target="_blank">github</a>
</div>
</div>
<!-- Top Navigation Menu -->
<div class="topnav">
<img src="./assets/logo.svg" class="surgeIcon">
<a href="index.html" 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>
<!-- about text -->
<div class="sqs-block-content">
<div class="textBox">
<h2>The Product</h2>
<h3 style="white-space:pre-wrap;">An interactive course visualizer to help you contemplate what courses you are required to take for fulfilling your degree requirements.</h3>
<p class="" style="white-space:pre-wrap;">Degree Navigator is aimed to incorporate the power of web scraping and data visualization to aggregate information about every SFU course and present them to the user in a visual and interactive way.
</p>
</div>
<div class="imgwrapper"><img class="demopic" src="./images/demo_expanded_updated.png" alt="product demo" style="width: 100%; height: 100%;"></div>
<div class="textBox">
<h2>Our Story</h2>
<p class="" style="white-space:pre-wrap;">SFU Surge recently put forward project groups to help solve real world problems. The Degree Navigator is the first out of many similar projects on the way.</p>
</div>
<div class="imageBox">
<div class="imgwrapper"><img class="demopic" src="./images/Surge3.jpg" alt="product demo" style="width: 100%; height: 100%;"></div>
</div>
<div class="textBox">
<h2>Our Team</h2>
<p class="" style="white-space:pre-wrap;">Our team consists of students from the faculty of Applied Sciences here at SFU.</p>
<p><b>Team Lead: </b>Amir Naghibi</p>
<p><b>Project Members: </b>Jason Lee, Shea Janke, Duy Nguyen, Sunayani Sarkar, Kassymkhan Bekbolatov, Denzel Tjokroardi</p>
</div>
</div>
</body>