-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
25 lines (23 loc) · 843 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
24
25
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>AJAX Image Gallery</title>
<link rel='stylesheet' href='skeleton.css'>
<link rel='stylesheet' href='custom.css'>
<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="img.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="twelve columns">
<h1>JSON Image Gallery</h1>
<p>Image gallery built using the $.getJSON() jQuery AJAX helper method. Image url's and descriptions are pulled from a JSON file by a JavaScript program and placed on this page, where pictures and descriptions are styled by a custom css style sheet.</p>
<p>You can check out the <a href="https://github.com/mariobox/jsongallery">source files</a> on Github.</p>
<div id="photos"></div>
</div>
</div>
</div>
</body>
</html>