-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassignments.html
159 lines (157 loc) · 3.38 KB
/
assignments.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Media Arts Class: Assignments</title>
<link rel="stylesheet" href="style.css" />
<script src="/script.js" defer></script>
</head>
<!-- this page looks at nav, background image/video -->
<header>
<h1>
<a href="index.html">Media Arts Class</a>
</h1>
</header>
<nav>
<ul>
<li>
<a href="syllabus.html">Syllabus</a>
</li>
<li>
<a href="schedule.html">Schedule</a>
</li>
<li id="selected">
<a href="assignments.html">Assignments</a>
</li>
<li>
<a href="resources.html">Resources</a>
</li>
<!-- <li>
<a href="/pages/faq.html">FAQ</a>
</li> -->
</ul>
</nav>
<main>
<h2>
Assignments
</h2>
<h3>
Assignment 1
</h3>
<h4>
Description
</h4>
<p>
Assignment description...
</p>
<h4>
Timeline
</h4>
<h5>
Part 1: Due 9/1
</h5>
<p>
Submit by....
</p>
<h5>
Part 2: Due 9/8
</h5>
<p>
Submit by....
</p>
<h4>
Examples/References
</h4>
<ul>
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
<li><a href="#">Link 3</a></li>
<li><a href="#">Link 4</a></li>
</ul>
<figure>
<img src="https://cdn.glitch.me/801e6f02-1a9e-41ff-b45b-8179b2a2c79f%2Fframes-015.png?v=1637260837236"
alt="image which shows a procedurally generated image using processing, it contains a grey circles and hairy shapes sparsely spread out over a white background">
<figcaption>Procedurally generated using Processing.</figcaption>
</figure>
<hr>
<h3>
Assignment 2
</h3>
<h4>
Description
</h4>
<p>
Assignment description...
</p>
<h4>
Timeline
</h4>
<h5>
Part 1: Due 9/1
</h5>
<p>
Submit by....
</p>
<h5>
Part 2: Due 9/8
</h5>
<p>
Submit by....
</p>
<h4>
Examples/References
</h4>
<ul>
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
<li><a href="#">Link 3</a></li>
<li><a href="#">Link 4</a></li>
</ul>
<iframe
width="450px"
height="500px"
alt="sketch showing different sizes of coffee cups"
src="https://editor.p5js.org/burnedsap/full/EqYBEosH3"
></iframe>
<hr>
<h3>
Assignment 3
</h3>
<h4>
Description
</h4>
<p>
Assignment description...
</p>
<h4>
Timeline
</h4>
<h5>
Part 1: Due 9/1
</h5>
<p>
Submit by....
</p>
<h5>
Part 2: Due 9/8
</h5>
<p>
Submit by....
</p>
<h4>
Examples/References
</h4>
<ul>
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
<li><a href="#">Link 3</a></li>
<li><a href="#">Link 4</a></li>
</ul>
<figure>
<img src="https://cdn.glitch.me/801e6f02-1a9e-41ff-b45b-8179b2a2c79f%2Fframes-015.png?v=1637260837236"
alt="image which shows a procedurally generated image using processing, it contains a grey circles and hairy shapes sparsely spread out over a white background">
<figcaption>Procedurally generated using Processing.</figcaption>
</figure>
</main>
</html>