Skip to content

Commit

Permalink
Update gallery.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Thunderrock424242 authored Aug 14, 2024
1 parent 63f91d4 commit 6521bbe
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions gallery.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wilderness Odyssey - Gallery</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Wilderness Odyssey</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</nav>
</header>
<section class="gallery">
<h2>Gallery</h2>
<div class="gallery-grid">
<img src="screenshot1.jpg" alt="Screenshot 1">
<img src="screenshot2.jpg" alt="Screenshot 2">
<img src="screenshot3.jpg" alt="Screenshot 3">
<img src="screenshot4.jpg" alt="Screenshot 4">
</div>
</section>
<footer>
<p>&copy; 2024 Wilderness Odyssey</p>
</footer>
</body>
</html>

0 comments on commit 6521bbe

Please sign in to comment.