-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02-lightbox.html
83 lines (78 loc) · 2.56 KB
/
02-lightbox.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
75
76
77
78
79
80
81
82
83
<!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>SimpleLightbox library</title>
<!-- Including SimpleLightbox CSS from a CDN -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/simplelightbox/2.14.2/simple-lightbox.min.css"
integrity="sha512-FaAQujRxLMvw+BkmGN3w7u9EdQQr1t0vQoY8KDh09+6SFaWSTe+KrT8oCWg25X91hytm5c5BTmiSGQejkraaZg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- 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">SimpleLightbox Gallery</h1>
<!-- Add gallery items to this list -->
<ul class="gallery"></ul>
<!-- Include SimpleLightbox library -->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/simplelightbox/2.14.2/simple-lightbox.min.js"
integrity="sha512-/4kQE5RJQYHRhUiK+CZS8UhaJTnLmQkDuf8lOhiP2xLdjthA/rm0VqqWjcyelIx+NDyNHFmtqvuIgOFQnI34WA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<!-- Include external JavaScript as a module -->
<script src="js/02-lightbox.js" type="module"></script>
</body>
</html>