-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (30 loc) · 1.14 KB
/
index.html
File metadata and controls
32 lines (30 loc) · 1.14 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AltSchool Assignments</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css"> <!-- Linking the external CSS -->
</head>
<body>
<header>
<h1>AltSchool Assignments</h1>
<p>Hello Instructor</p>
<p>Welcome! Please find my assignments below</p>
</header>
<nav>
<ul>
<li><a href="/Ex1/">Assignment 1: An Otter Essay</a></li>
<li><a href="/Ex2/">Assignment 2: Huckleberry</a></li>
<li><a href="/Ex3/">Assignment 3: Product Card</a></li>
<li><a href="/Ex4/">Assignment 4: Wellness Registration</a></li>
<li><a href="/Ex5/">Assignment 5: Checkout - WP Pusher</a></li>
<li><a href="/Ex6/">Assignment 6: Interactive Webpage</a></li>
</ul>
</nav>
<footer>
<p>© 2025 Victor's Assignments. All rights reserved.</p>
</footer>
</body>
</html>