-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
38 lines (38 loc) · 1.22 KB
/
portfolio.html
File metadata and controls
38 lines (38 loc) · 1.22 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
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<title>Portfolio Page</title>
</head>
<body>
<nav class="navbar">
<h1 class="logo"><a href="index.html">personal website</a></h1>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<h1 class="page-title">Portfolio Page</h1>
<div class="project">
<a href="index.html"
><img src="personal-website.png" alt="Personal Website" width="300" class="project-image"
/></a>
<div class="project-details">
<div class="project-name">
<p><strong>Personal Website</strong></p>
</div>
<div class="project-description">
<p>A personal website that showcases my resume, blog, and portfolio.</p>
</div>
<a href="index.html">LEARN MORE</a>
</div>
</main>
<br>
<footer class="footer">
© 2025 Jordan Lu's Website | All Rights Reserved
</footer>
</body>
</html>