-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (56 loc) · 1.63 KB
/
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
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
<!doctype html>
<html lang="en">
<head>
<title>A Course Site For GDES 45</title>
<meta charset="utf-8">
<style type="text/css">
body {
color: #ddd;
margin: 60px auto;
background-image:url(images/bluspark.gif);
}
nav {
text-align:center;
}
a:link {
color: #ddd;
}
footer {
text-align:center;
}
</style>
</head>
<body>
<nav>
<h1>Graphic Design 45 — Web Design with HTML and CSS</h1>
<span>
<a href="https://jrpabraham.github.io/web-design">Home</a> <a href="http://www.garrettmedia.com/mission/gdes45/gdes45_main.htm">Instructor</a> <a href="http://missioncollege.edu/depts/gdes/classes/gdes045.php">Catalog</a> <a href="OReilly.Learning.Web.Design.4th.Edition.Aug.2012.ISBN.1449319270.pdf">Textbook</a>
</span>
</nav>
<hr style="width:80%">
<div>
<table align="center" style="width:75%">
<tr>
<td><h3>Notes</h3></td>
<td><h3>Assignments</h3></td>
</tr>
<tr>
<td>Day 1</td>
<td><a href="ass1.html">Assignment 1</a></td>
</tr>
<tr>
<td><a href="blocktags.html">Day 2 -- Block Tags</a></td>
<td>Assignment 2</td>
</tr>
<tr><td><a href="lists.html">Day 3 -- Ordered and Unordered Lists</a></td></tr>
<tr><td><a href="color-exercise.htm">Day 4 -- Colors</a></td></tr>
<tr><td><a href="links.html">Day 5 -- Hyperlinks</a></td></tr>
<tr><td><a href="images.html">Day 6 -- Images</a></td></tr>
</table>
</div>
<hr style="width:80%">
<footer>
<a href="https://jrpabraham.github.io"><img src="images/copyleft.png" style="width:12px;height:12px;"> Justin Abraham</a>
</footer>
</body>
</html>