38 lines
667 B
HTML
38 lines
667 B
HTML
<html>
|
|
|
|
<head>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="gallery.js"></script>
|
|
</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">
|
|
<figure onclick="maximise(this)">
|
|
<img src="gallery/dog1.jpeg">
|
|
<figcaption>
|
|
derek
|
|
</figcaption>
|
|
</figure>
|
|
|
|
|
|
<figure onclick="maximise(this)">
|
|
<img src="gallery/dog2.jpeg">
|
|
<figcaption>
|
|
susan
|
|
</figcaption>
|
|
</figure>
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|