-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
34 lines (33 loc) · 1.58 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
<!DOCTYPE html>
<html>
<head>
<title> Portfolio </title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo"> <a href="index.html"> Elaina Lyons </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="contact.html"> Contact</a></li>
<li> <a href="portfolio.html"> Portfolio</a></li>
<li> <a href="resume.html"> Resume </a></li>
</ul>
</nav>
<main>
<h1 class="page-title"> Portfolio </h1>
<div class="project">
<a href="index.html"> <img class="project-image" src="DSC_3069.jpeg" width="400" alt="Portrait Image of Elaina Lyons from her Website"> </a>
<div class="project-details">
<p class="project-name"> <strong> Elaina Lyons' Personal Website</strong> </p>
<p class="project-description"> This project involved the use of HTML and CSS to independently create an
interactive website. With a home page and information on Elaina Lyons' blog, resume, and portfolio, this website
also contains a form prompting viewers to submit their contact information. </p>
<a href="index.html"> LEARN MORE </a>
</div>
</div>
</main>
<footer class="footer"> © 2023 Elaina's Website | All Rights Reserved </footer>
</body>
</html>