-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgallery.html
More file actions
26 lines (24 loc) · 809 Bytes
/
gallery.html
File metadata and controls
26 lines (24 loc) · 809 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Galleri</title>
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<script src="https://kit.fontawesome.com/ef4bc5fe16.js" crossorigin="anonymous"></script>
</head>
<body id="Global_Body">
<script src="js/navbar.js"></script>
<main id="mainContent">
<h1 id="galleryHeading">Gallery</h1>
<p>This is a small picture gallery. Click the pictures to view them properly, click again to go back.</p>
<div id="imageContainer"></div>
<div id="modal">
<div id="modalWrapper">
<img id="modalImage">
</div>
</div>
</main>
<script src="js/gallery.js"></script>
</body>
</html>