-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathrandom.html
More file actions
36 lines (32 loc) · 953 Bytes
/
random.html
File metadata and controls
36 lines (32 loc) · 953 Bytes
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
<!DOCTYPE html>
<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="imgs/favicon">
<link rel="stylesheet" href="css/rest.css">
<link rel="stylesheet" href="css/style.css">
<title>Random</title>
</head>
<body>
<header>
<nav>
<ul>
<li>About Me</li>
<li>My Family</li>
<li class="active">Random Stuff</li>
<li>UMSI</li>
</ul>
</nav>
</header>
<h2>Random Page</h2>
<p>Make sure you are doing the readings from the <a href = "www.w3schools.com/html/">W3 Schools HTML
tutorial</a> as well as the readings from Shay Howe's
<a href = "https://learn.shayhowe.com/html-css/"<a>HTML and CSS tutorial</a>.
<p>Using the Piazza site is another great way to stay on top of your classwork</p>
<footer>
<p>Colleen van Lent copy 2023</p>
</footer>
</body>
</html>