-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (24 loc) · 863 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Edvisor widget sandbox!</title>
<!-- Load the Edvisor widget from CDN -->
<script type="text/javascript" src="./dist/bundle.js"></script>
<!-- Selectize THEMES (default, bootstrap3, material) -->
<link rel="stylesheet" href="https://npmcdn.com/[email protected]/dist/index.min.css"/>
</head>
<body>
<h1>Simon Frasier University</h1>
<div>SFU Vancouver's mission is to enhance its status as a dynamic, engaged and accessible urban university campus.</div>
<div id="widget" style="border: 1px solid black"></div>
<div>CONNECT WITH US [Facebook] [Instagram] [Twitter]</div>
<!-- Render the Edvisor widget -->
<script type="text/javascript">
Edvisor.widgets.courseSearchWidget.render({
apiKey: 'agent',
selector: "#widget"
});
</script>
</body>
</html>