PawsAndPetals/Gallery.html

118 lines
1.9 KiB
HTML
Raw Permalink 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>
2025-05-16 12:04:17 +01:00
<a href="index.html">Home</a> |
2025-05-16 12:26:31 +01:00
<a href="ServicesAndPrices.html">Services</a> |
2025-05-16 12:04:17 +01:00
<a href="Gallery.html">Gallery</a> |
2025-04-01 09:18:37 +00:00
<a href="Contact.html">Contact</a>
</nav>
2025-05-16 12:41:40 +01:00
<main class="white_backing" style="margin-bottom: 0; padding: 5px;">click a photo for a bigger picture</main>
2025-04-01 09:18:37 +00:00
<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-05-19 12:41:18 +01:00
<img src="gallery/BeauAndCoco.jpeg">
2025-04-01 09:18:37 +00:00
<figcaption>
2025-05-19 12:41:18 +01:00
Beau and 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>
2025-05-16 12:04:17 +01:00
<!-- <figure onclick="maximise(this)"> -->
<!-- <img src="gallery/Training Dog.jpeg"> -->
<!-- <figcaption> -->
<!-- Training Dog -->
<!-- </figcaption> -->
<!-- </figure> -->
2025-04-28 23:26:15 +01:00
2025-05-16 12:04:17 +01:00
<!-- <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-28 23:26:15 +01:00
2025-04-01 09:18:37 +00:00
</main>
</body>
</html>