-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02-lightbox.html
28 lines (23 loc) · 1.09 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
<!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="css/common.css" />
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/simplelightbox/2.12.1/simple-lightbox.min.css"
integrity="sha512-q+OxwGn5fQc6oIdj3NQgTVMgS9TCLksZp5DsdSEsZbGamjdN7yVAMah+R1DmHZykkHD5gI8imeuEfmkp7ZHZ3w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<p><a href="index.html">Go back</a></p>
<!-- Add gallery items to this list -->
<ul class="gallery"></ul>
<script src="js/02-lightbox.js" type="module"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/simplelightbox/2.12.1/simple-lightbox.min.js"
integrity="sha512-QoopN2y0b53eP+J2BNc1ff4ImedQAt2xDdhLQkUzTCyfniKkUlHbhweoYxDhCY78Z5EnMtY5rLtjtTK0Yc9Jcw=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</body>
</html>