-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
37 lines (35 loc) · 1.14 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>
<title>Portfolio</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="img/png" href="images/personal-icon.png">
</head>
<body style="background-color: #192f56">
<nav class="navbar" style="background-color: #1f3e74">
<h1 class="logo">Portfolio</h1>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</nav>
<main>
<div class="project">
<div class="project-details">
<p class="project-name">Holden's Personal Website</p>
<p class="project-description">
Utilized HTMl, CSS, and Vanilla Javascript to create a personal website to showcase myself.
I hope you find this welcoming and press the link below to find more information about me
and who I am. Thank you!
</p>
<a href="index.html">Learn More</a>
</div>
</div>
</main>
<footer class="footer">
</footer>
</body>
</html>