-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources.html
80 lines (78 loc) · 1.56 KB
/
resources.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Media Arts Class: Resources</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>
<a href="assignments.html">Assignments</a>
</li>
<li id="selected">
<a href="resources.html">Resources</a>
</li>
</ul>
</nav>
<main>
<h2>
Resources
</h2>
<hr />
<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>
<iframe
width="400px"
height="400px"
alt="sketch showing different sizes of coffee cups"
src="https://editor.p5js.org/burnedsap/full/EqYBEosH3"
></iframe>
research into embeds a11y
</main>
</