-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
52 lines (41 loc) · 1.66 KB
/
gallery.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes" />
<link rel="stylesheet" href="css/styles.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<title>Drew Kills Photography</title>
</head>
<body>
<div id="container">
<header>
<a href="index.html"><img src="images/dkplogo.jpg" alt="DKP Logo"></a>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact Me</a></li>
</ul>
</nav>
<main>
<ul class="gallery">
<!-- Include image details directly in the alt attribute -->
<li><img src="images/Axe.jpg" alt="Axe (1080x1350)" onclick="window.open('images/Axe.jpg', '_blank');" /></li>
<!-- Repeat the pattern for other images -->
</ul>
<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
</main>
<!-- Use the footer area to add web page footer content -->
<footer>
Copyright (c) 2020 Andrew Oldring<br>
<a href="mailto:[email protected]">[email protected]</a>
<a href="https://github.com/drewkills/DKPhotography">Powered by GitHub, Inc.</a>
</footer>
</div>
<!-- Moved script tags to the end of the body for better performance -->
<script src="scripts/javascript.js"></script>
<script src="scripts/countdown.js"></script>
</body>
</html>