blob: 757de9d15d75872b642508d499d754a301d514b9 (
plain)
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
|
<!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>
|