-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
58 lines (53 loc) · 1.91 KB
/
portfolio.html
File metadata and controls
58 lines (53 loc) · 1.91 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<title>Portfolio</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<h2 class="logo"><a href="index.html">personal website</a></h2>
<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>
<div class="portfolio">
<div class="portfolio-title">
<h1>Portfolio</h1>
</div>
<div class="portfolio-details">
<ul>
<li>
<div class = "project">
<a href = "index.html">
<img src = "Personal Website.png" alt = "Personal Website" width = "650pt", height = "300pt" />
</a>
<div class = "project-description">
<h3> Personal Webstie</h3>
<p> A personal website containing my resume, portfolio, contact, and about page </p>
</div>
</li>
<li>
<div class = "project">
<img src = "BikeJog.jpg" alt = "BikeJog Mobile Application" width = "175pt", height = "300pt" />
<div class = "project-description"></div>
<h3> BikeJog Mobile Application</h3>
<p>
An excersice based mobile application that would allow users to track
routes that were biked or jogged and view stats based off routes
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</main>
<footer class="footer">© 2025 Amelia Harris | All Rights Reserved</footer>
</body>
</html>