-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (43 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Media Arts Class: Main</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>
<a href="resources.html">Resources</a>
</li>
</ul>
</nav>
<main id="headerimage" aria-label="background image of the web page is an abstract image consisting of a circles of random sizes spread out acrosss the page, created on p5js" >
<h2>
Fall 2021 Creative Coding
</h2>
<p>
CRN2032
</p>
<p>
Taught by....
</p>
</main>
</html>