-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path01-gallery.html
74 lines (70 loc) · 2.16 KB
/
01-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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="favicon/favicon-16x16.png"
/>
<link rel="manifest" href="favicon/site.webmanifest" />
<link
rel="mask-icon"
href="favicon/safari-pinned-tab.svg"
color="#f7df1e"
/>
<meta name="msapplication-TileColor" content="#f7df1e" />
<meta name="theme-color" content="#10162F" />
<title>Image Gallery</title>
<!-- Including BasicLightbox CSS from a CDN -->
<link
href="https://cdn.jsdelivr.net/npm/basiclightbox@5.0.4/dist/basicLightbox.min.css"
rel="stylesheet"
/>
<!-- External CSS for common styles -->
<link rel="stylesheet" href="css/common.css" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<p>
<a href="index.html" class="back-button">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
class="bi bi-arrow-left-short"
viewBox="0 0 16 16"
>
<path
fill-rule="evenodd"
d="M12 8a.5.5 0 0 1-.5.5H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5a.5.5 0 0 1 .5.5z"
/>
</svg>
Back
</a>
</p>
<h1 class="title">Image Gallery</h1>
<!-- Add gallery items to this list -->
<ul class="gallery"></ul>
<!-- Include BasicLightbox library -->
<script src="https://cdn.jsdelivr.net/npm/basiclightbox@5.0.4/dist/basicLightbox.min.js"></script>
<!-- Include external JavaScript as a module -->
<script src="js/01-gallery.js" type="module"></script>
</body>
</html>