-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschedules.html
83 lines (78 loc) · 2.37 KB
/
schedules.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>class Schedules</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="wrap">
<ul class="navbar">
<li><a href="index.html">Home</a></li>
<li><a href="bio.html">About Me</a>
<ul>
<li><a href="bio.html">Bio</a></li>
<li><a href="pictures.html">Pictures</a></li>
</ul>
</li>
<li><a href="schedules.html">Class Schedules</a>
<ul>
<li><a href="#">2015</a></li>
<li><a href="#">2014</a></li>
<li><a href="#">2013</a></li>
<li><a href="#">2012</a></li>
</ul>
</li>
<li><a href="index.html">Useful Resources</a>
<ul>
<li><a href="https://validator.w3.org">HTML Validation</a></li>
<li><a href="http://www.w3schools.com/tags/default.asp">HTML Code Help</a></li>
<li><a href="https://jigsaw.w3.org/css-validator/#validate_by_upload">CSS Validation</a></li>
<li><a href="http://www.w3schools.com/css/">CSS Code Help</a></li>
<li><a href="https://www.dropbox.com/">DropBox</a></li>
<li><a href="https://github.com">GitHub</a></li>
</ul>
</li>
<li><a href="mailto:mitch.wilson94@gmail.com?Subject=Website">Contact Me</a>
<ul>
<li><a href="mailto:mitch.wilson94@gmail.com?Subject=Website">Email</a></li>
<li><a href="contact.html">Social Media</a></li>
</ul>
</li>
<li><a href="">Quick Links</a>
<ul>
<li><a href="http://www.google.com">Google</a></li>
<li><a href="http://www.cs.uga.edu">UGA Computer Science</a></li>
</ul>
</li>
</ul>
</div>
<!--end of navigation panel-->
<p class="caps">My Class Schedules</p>
<!--the default value for the dropdown should be "Go To". It works in Chrome but not Firefox, checked by my TA-->
<p>
<br>
<br>
</p>
<table>
<tr>
<th>Year</th>
<th colspan="2">Semester</th>
<!-- 2nd <td> is colspan from above -->
</tr>
<tr>
<td> 2015 </td>
<td><a href="">Fall</a></td>
<td><a href="">Spring</a></td>
</tr> <tr>
<td> 2014 </td>
<td><a href="">Fall</a></td>
<td><a href="">Spring</a></td>
</tr> <tr>
<td> 2013 </td>
<td><a href="">Fall</a></td>
<td><a href="">Spring</a></td>
</tr>
</table>
</body>
</html>