-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgraph_gen.html
More file actions
27 lines (22 loc) · 967 Bytes
/
graph_gen.html
File metadata and controls
27 lines (22 loc) · 967 Bytes
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>
<head>
<meta charset="utf-8">
<title>Prerequisite Map Generator</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script type="text/javascript" src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<!-- <script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script> -->
<h2>Prerequisites Map Maker</h2>
</head>
<body bgcolor = #c5e1e3>
<div class="ui-widget">
<label for="tags">Enter a course </label>
<input placeholder = "e.g. MATH 109" onfocus="this.value=''" id="parent_course">
<button id="display" class="first last">Generate prerequisite map</button>
</div>
<script src = "prereq_grapher.js">
</script>
</body>
</html>