PawsAndPetals/Gallery.html

128 lines
1.9 KiB
HTML
Raw Normal View History

2025-04-01 09:18:37 +00:00
<html>
<head>
<link rel="stylesheet" href="style.css">
2025-04-30 22:38:41 +01:00
<link rel="stylesheet" href="gallery.css">
<link rel="stylesheet" href="effects.css">
<link rel="stylesheet" href="fontScaler.css">
2025-04-01 09:18:37 +00:00
<script src="gallery.js"></script>
2025-04-26 15:05:09 +01:00
<script src="fontScaler.js" defer></script>
2025-04-01 09:18:37 +00:00
</head>
<body>
<nav>
<a href="index.html">Home</a>
<a href="ServicesAndPrices.html">Services And Prices</a>
<a href="Gallery.html">Gallery</a>
<a href="Contact.html">Contact</a>
</nav>
<main class="white_backing">click a photo for a bigger picture</main>
<main class="gallery">
2025-04-28 23:26:15 +01:00
<figure onclick="maximise(this)">
<img src="gallery/Baxby.jpeg">
<figcaption>
Baxby
</figcaption>
</figure>
2025-04-01 09:18:37 +00:00
<figure onclick="maximise(this)">
2025-04-28 23:26:15 +01:00
<img src="gallery/Beau.jpeg">
2025-04-01 09:18:37 +00:00
<figcaption>
2025-04-28 23:26:15 +01:00
Beau
2025-04-01 09:18:37 +00:00
</figcaption>
</figure>
2025-04-28 23:26:15 +01:00
2025-04-01 09:18:37 +00:00
<figure onclick="maximise(this)">
2025-04-28 23:26:15 +01:00
<img src="gallery/Coco.jpeg">
2025-04-01 09:18:37 +00:00
<figcaption>
2025-04-28 23:26:15 +01:00
Coco
2025-04-01 09:18:37 +00:00
</figcaption>
</figure>
2025-04-28 23:26:15 +01:00
<figure onclick="maximise(this)">
<img src="gallery/Maggie.jpeg">
<figcaption>
Maggie
</figcaption>
</figure>
<figure onclick="maximise(this)">
<img src="gallery/Pippa.jpeg">
<figcaption>
Pippa
</figcaption>
</figure>
<figure onclick="maximise(this)">
<img src="gallery/Tilly.jpeg">
<figcaption>
Tilly
</figcaption>
</figure>
<figure onclick="maximise(this)">
<img src="gallery/Tilly2.jpeg">
<figcaption>
Tilly
</figcaption>
</figure>
<figure onclick="maximise(this)">
<img src="gallery/Training Dog.jpeg">
<figcaption>
Training Dog
</figcaption>
</figure>
<figure onclick="maximise(this)">
<img src="gallery/Training Dog2.jpeg">
<figcaption>
Training Dog
</figcaption>
</figure>
<figure onclick="maximise(this)">
<img src="gallery/Training Dog3.jpeg">
<figcaption>
Training Dog
</figcaption>
</figure>
2025-04-01 09:18:37 +00:00
</main>
</body>
</html>