diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..757de9d --- /dev/null +++ b/index.html @@ -0,0 +1,36 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <title>Unofficial York University Course Query</title> + <script src="script.js"></script> + <link rel="stylesheet" href="style.css"> + </head> + <body> + <div class="container"> + <div> + <form method="GET"> + <input type="text" id="input" size="60"> + <select id="terms" size=3></select> + </form> + </div> + <div> + <table> + <thead> + <th>Faculty</th> + <th>Dept./Subj.</th> + <th>Number</th> + <th>Credits</th> + </thead> + <tbody> + <td id="faculty"></td> + <td id="dept"></td> + <td id="crsn"></td> + <td id="cred"></td> + </tbody> + </table> + <a id="link">Course Query</a> + </div> + </div> + </body> +</html> |