-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
50 lines (49 loc) · 1.65 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
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css" />
<title>Alex Bloomer</title>
</head>
<body class="everything">
<nav class="navbar">
<a href="index.html"><div class="logo"></div></a>
<ul class="nav-list">
<li class="nav_item"><a href="index.html">Home</a></li>
<li class="nav_item"><a href="blog.html">Blog</a></li>
<li class="nav_item"><a href="portfolio.html">Portfolio</a></li>
<li class="nav_item"><a href="resume.html">Resume</a></li>
<li class="nav_item"><a href="contact.html">Contact</a></li>
</ul>
<ul class="icon-list">
<li class="icon-item">
<a href="https://github.com/AlexBloomer"
><img src="pictures/github.png"
/></a>
</li>
<li class="icon-item">
<a href="https://www.linkedin.com/in/alexander-bloomer-9a7b94279/"
><img src="pictures/linkedin.png"
/></a>
</li>
</ul>
</nav>
<h1><strong>Portfolio</strong></h1>
<main>
<div class="Project">
<div class="project-image">
<a href="index.html"><div class="website"></div></a>
</div>
<div class="project-details">
<div class="website-details">
<p class="project-name"><strong>Personal Website</strong></p>
<p class="project-description">
A personal website that showcases my resume, blog, and portfolio
</p>
<a href="index.html">Learn More</a>
</div>
</div>
</div>
</main>
<footer class="footer">© 2023 Alex Bloomer | All Rights Reserved</footer>
</body>
</html>