-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
32 lines (32 loc) · 1.09 KB
/
blog.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Blog</title>
<link rel="stylesheet" href ="styles.css" />
</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">Blog</h1>
My trip to Panama
<div class = "about-image">
<img src="IMG_7451.HEIC" alt="A picture of Panama trip" height="220" width="550">
<img src="IMG_1997.HEIC" alt="A picture of Panama trip" height="250" width="200">
<img src="IMG_2004.HEIC" alt="A picture of Panama trip" height="350" width="600">
</div>
</main>
<footer class="footer">
© 2023 Javier' Website | All Rights Reserved"
</footer>
</body>
</head>
</html>