assignment 1

This commit is contained in:
Joey Eamigh
2024-09-20 20:10:37 -04:00
commit 52202eeb6f
42 changed files with 4838 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gallery | Churro Box</title>
<link rel="stylesheet" href="css/gallery.css" />
</head>
<body>
<header>
<p>Churro Box</p>
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="gallery.html">Gallery</a>
</li>
<li>
<a
target="_blank"
rel="noopener noreferrer"
href="https://www.instagram.com/churro_box/"
>Instagram</a
>
</li>
<li>
<a target="_blank" rel="noopener noreferrer" href="https://youtu.be/dQw4w9WgXcQ"
>Youtube</a
>
</li>
</ul>
</nav>
</header>
<main>
<section class="title">
<h1>Gallery of Churro Box</h1>
<h2>Churro Box is the bestest doggo!</h2>
</section>
<section id="gallery">
<img src="img/churro0.jpg" alt="Churro" />
<img src="img/churro1.jpg" alt="Churro" />
<img src="img/churro2.jpg" alt="Churro" />
<img src="img/churro3.jpg" alt="Churro" />
<img src="img/churro4.jpg" alt="Churro" />
<img src="img/churro5.jpg" alt="Churro" />
</section>
</main>
<footer>
<p>&copy; <span id="year"></span> Churro Box</p>
</footer>
</body>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</html>