generated from MultiverseLearningProducts/personal-webpage-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
37 lines (37 loc) · 1.2 KB
/
portfolio.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio - [Your Name]</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="bio.html">Bio</a>
</li>
<li>
<a href="experience.html">Experience</a>
</li>
<li>
<a href="portfolio.html" aria-current="page">Portfolio</a>
</li>
</ul>
</nav>
</header>
<main>
<h1>Portfolio</h1>
<!-- The meat and potatoes of your personal site, here you want to include the projects you’ve worked on. For each project you wish to showcase, you should include the name of your project, a brief description, a screenshot, and a link to where it lives on the web. Since we don’t have any projects to display yet, placeholder images/links/descriptions are completely fine. -->
</main>
<footer>
<p>Copyright © 2024 [Your Name]</p>
</footer>
<script src="script.js"></script>
</body>
</html>