-
Notifications
You must be signed in to change notification settings - Fork 0
/
02-lightbox.html
31 lines (30 loc) · 1.16 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
<!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" />
<title>SimpleLightbox library</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/simplelightbox/2.13.0/simple-lightbox.css"
integrity="sha512-t+hNIFYF5a+PkEcq/FJdJ8oobIvrcn+ut6DabKGfsKnAP9KaODT3vzS9EKcWflSjxxl7FhkCR7qeqv4eUxLAkg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="css/common.css" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<p><a href="index.html">Go back</a></p>
<!-- Add gallery items to this list -->
<ul class="gallery"></ul>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/simplelightbox/2.13.0/simple-lightbox.min.js"
integrity="sha512-va85zLd+1szc8k3CyJ26pBSluqH+c3H+SOf4cBWhpHFU3ZI331gE6nqLUIm0kd1e0HcZq5YYwdHuSed8IhACAA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script src="js/02-lightbox.js" type="module"></script>
</body>
</html>