-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 741 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 741 Bytes
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 dir="ltr" lang="en">
<head>
<meta charset="utf-8">
<title>Photo Loader</title>
<script src="modernizr.js"></script>
<meta name="author" content="Bradley Few" />
<link rel="stylesheet" href="structure.css" />
</head>
<body>
<div id="photo" class="fadeIn">
<img src="Images/Img-1.jpg" alt="" />
</div>
<ul id="feeder">
<li><a class="active" href="#"><img src="Images/Thumbs/Img-1.jpg" alt=""></a></li>
<li><a href="#"><img src="Images/Thumbs/Img-2.jpg" alt=""></a></li>
<li><a href="#"><img src="Images/Thumbs/Img-3.jpg" alt=""></a></li>
<li><a href="#"><img src="Images/Thumbs/Img-4.jpg" alt=""></a></li>
</ul>
<script src="jquery.js"></script>
<script src="photoLoader.js"></script>
</body>
</html>