-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path01-gallery.html
25 lines (23 loc) · 884 Bytes
/
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
<!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" />
<link rel="shortcut icon" href="./assets/favicon.ico" />
<title>Image gallery</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/basicLightbox.min.css"
/>
<link rel="stylesheet" href="css/common.css" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<p><a class="go-btn back-btn btn" href="index.html">Go back</a></p>
<!-- Add gallery items to this list -->
<div class="gallery"></div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/basicLightbox.min.js"></script>
<script src="js/01-gallery.js" type="module"></script>
</body>
</html>