-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 978 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>An Interactive Photo Gallery</title>
<link rel="stylesheet" href="js/lightbox2/css/lightbox.min.css">
<link rel="stylesheet" href="css/application.css">
</head>
<body>
<div class="container">
<h1 class="headline__primary">An Interactive Photo Gallery</h1>
<input id="searchInput" type="search" placeholder="Search for an image... (use a comma for separate search terms)">
</div>
<!-- jQuery library -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<!-- jQuery Lightbox2 Plugin -->
<script src="js/lightbox2/js/lightbox.min.js"></script>
<!-- Custom JavaScript -->
<script src="js/data.js"></script>
<script src="js/main.js"></script>
</body>
</html>