This repository was archived by the owner on May 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (30 loc) · 1.45 KB
/
index.html
File metadata and controls
32 lines (30 loc) · 1.45 KB
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
32
<!DOCTYPE html>
<head>
<script type="text/javascript" src="thumbnails.js"></script>
<script type="text/javascript" src="images.js"></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<title> PSIG, Plain Simple Image Gallery</title>
</head>
<body>
<script src="js/vendor/jquery-1.11.1.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.1.min.js"><\/script>')</script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="index.js"></script>
<h1>Welcome to PSIG</h1>
<a href="thumbnails/all.gif"> <img class='thumb' src="thumbnails/all.gif"> </a>
<div>
<button class="btn" onclick="prevPage()"> Previous Page </button>
<button class="btn" onclick="nextPage()"> Next Page </button>
<ul id="imgtable">
<a href="thumbnails/all.gif"> <img class='thumb' src="thumbnails/all.gif"> </a>
</ul>
<button class="btn" onclick="prevPage()"> Previous Page </button>
<button class="btn" onclick="nextPage()"> Next Page </button>
</div>
</body>
</html>