-
Notifications
You must be signed in to change notification settings - Fork 0
/
random.html
35 lines (34 loc) · 1.08 KB
/
random.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- TIP
You will find any errors from the head section using the console. -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/favicon.ico">
<link rel="stylesheet" href="css/html5reset.css">
<link rel="stylesheet" href="css/style.css">
<title>Random</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href = "index.html">ABOUT ME</a></li>
<li><a href = "family.html">My Family</a></li>
<li class="active"><a href = "random.html">Random Stuff</a></li>
<li><a href = "si.umich.edu">UMSI</a></li>
</ul>
</nav>
<h1>Random Page</h1>
</header>
<main>
<p>Make sure you are doing the readings from the <a href = "www.w3schools.com/html/">W3 Schools HTML
</a>tutorial as well as the readings from Shay Howe's <a href = "https://learn.shayhowe.com/html-css/">HTML and CSS tutorial</a></p>
<p>Using the Piazza site is another great way to stay on top of your classwork</p>
</main>
<footer>
<p>Colleen van Lent © 2024</p>
</footer>
</body>
</html>