Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<a href="about.html" class="mx-2">About</a>
<a href="programs.html" class="mx-2">Programs</a>
<a href="contact.html" class="mx-2">Contact</a>
<a href="gallery.html" class="text-white hover:text-gray-300">Gallery</a>
</nav>
</div>
</header>
Expand Down
53 changes: 53 additions & 0 deletions gallery.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gallery - Kelmscott SHS Robotics</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>

<body class="bg-gray-200">
<!-- Header Section -->
<header class="bg-gray-800 text-white p-4">
<div class="container mx-auto flex justify-between items-center">
<a href="https://kshs-robotics-club.github.io/">
<img src="logo.png" alt="KSHS Robotics" class="w-20 h-20">
</a>
<nav>
<a href="about.html" class="mx-2">About</a>
<a href="programs.html" class="mx-2">Programs</a>
<a href="contact.html" class="mx-2">Contact</a>
<a href="gallery.html" class="text-white hover:text-gray-300">Gallery</a>
</nav>
</div>
</header>

<!-- Main content -->
<main class="container mx-auto px-4 py-8">
<h1 class="text-3xl font-bold mb-8">Our Robotics Gallery</h1>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-4">

<div class="bg-white p-4 shadow-md rounded-lg">
<img src="/gallery/robot1.jpg" alt="Robot 1" class="w-full h-48 object-cover rounded">
<p class="mt-2 text-center">Robot 1 Description</p>
</div>

</div>
</main>

<!-- Footer Section -->
<footer class="bg-gray-800 text-white py-4">
<div class="container mx-auto flex flex-col sm:flex-row justify-between items-center px-4 sm:px-0">
<p class="mb-4 sm:mb-0">&copy; 2024 Kelmscott Senior High School Robotics</p>
<div>
<a href="#" class="mx-2"><i class="fab fa-twitter"></i></a>
<a href="https://www.facebook.com/profile.php?id=61559577347658" class="mx-2"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/kshsrobotics/" class="mx-2"><i class="fab fa-instagram"></i></a>
<a href="https://www.youtube.com/@KSHSFRCroboticsteam" class="mx-2"><i class="fab fa-youtube"></i></a>
</div>

</div>
</footer>
</body>
</html>
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
<a href="about.html" class="mx-2">About</a>
<a href="programs.html" class="mx-2">Programs</a>
<a href="contact.html" class="mx-2">Contact</a>
<a href="gallery.html" class="text-white hover:text-gray-300">Gallery</a>
</nav>
</div>
</header>
Expand Down