Upload files to "/"

This commit is contained in:
Rosia Evans 2025-04-01 09:18:37 +00:00
parent 33b7e44538
commit 5dc9fa8c3a
5 changed files with 206 additions and 0 deletions

38
Gallery.html Normal file
View file

@ -0,0 +1,38 @@
<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>