forked from jordan-cutler/CSB_flowchart
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (25 loc) · 836 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
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<title> CSB courses </title>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<div id = "page-wrapper">
<body>
<div id = "course-container">
<img id = "background" src = "arrows.gif">
<div id = "reset-button" class = "button">Reset</div>
<div id = "spring-button" class = "button">Spring</div>
<div id = "fall-button" class = "button">Fall</div>
<div id = "both-button" class = "button">Both</div>
</div>
<div id = "side-information">
<div id = "info-title"> <h2> LU CSB Flowchart </h2> </div>
<div id = "desc-area"> </div>
<div>
</div>
<script src = "jquery.js" type="text/javascript"></script>
<script src = "hoverIntent.js" type = "text/javascript"></script>
<script src = "coursesController.js" type="text/javascript"></script>
</body>
</html>