-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
36 lines (36 loc) · 1.39 KB
/
blog.html
File metadata and controls
36 lines (36 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<title>Ivan's Blog </title>
<link rel="stylesheet" href="full_styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="index.html">Ivan Alvarez</a>
</h1>
<u1 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>
</u1>
</nav>
<main>
<h1 class="page-title">My Blog</h1>
These are some photos I took on my most recent hike!<br>
I went to Yosemite National Park this summer and it was one<br>
of the longest hikes that I have ever done.
<br><br>
<div class="hikes">
<img src="hike1_1.jpg" alt="image 1 of my most recent hike" width="750" height="1000">
<img src="hike1_2.jpg" alt="image 2 of my most recent hike" width="750" height="1000">
<img src="hike1_3.jpg" alt="image 3 of my most recent hike" width="750" height="900">
</div>
</main>
<footer class="footer">
© 2023 Ivan's Blog | All Rights Reserved
</footer>
</body>
</html>