forked from scrippscollege/MS_053_S24
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
44 lines (41 loc) · 1.02 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>Socially-Engaged Software 2024 – Homepage</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">Socially-Engaged Software</a>
</h1>
</header>
<nav>
<ul>
<li>
<a
href="syllabus.html"
>Syllabus</a
>
</li>
<li>
<a href="assignments.html">Assignments</a>
</li>
<li>
<a href="tutorials.html">Tutorials</a>
</li>
<li>
<a href="people.html">People</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>Welcome to Fall 2024</h2>
</main>
</html>