-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
50 lines (44 loc) · 1.84 KB
/
gallery.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Photography Club Gallery</title>
<!-- Date: 2011-12-14 -->
</head>
<body>
<!-- jquery stylesheet and files from google cdn -->
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/base/jquery-ui.css" type="text/css" media="all" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js" type="text/javascript"></script>
<script type="text/javascript" src="javascript/jquery.lightbox-0.5.min.js"></script>
<link rel="stylesheet" href="styles.css" type="text/css" media="all" />
<link rel="stylesheet" href="javascript/jquery.lightbox-0.5.css" type="text/css" media="all" />
<script type="text/javascript">
$(document).ready(function() {
$('#nav').load("nav.html");
// $('#gallery_tabs').tabs();
$('#gallery_tabs').tabs({
load: function(event, ui) {
$('a', ui.panel).click(function() {
$(ui.panel).load(this.href);
return false;
});
}
});
});
</script>
<div id="nav" page="gallery"></div>
<div id="container">
<div id="gallery_tabs">
<ul>
<li><a href="gal_nature.html"><span>Nature</span></a></li>
<li><a href="gal_abstract.html"><span>Abstract</span></a></li>
<li><a href="gal_flower.html"><span>Flowers</span></a></li>
<li><a href="gal_animals.html"><span>Animals</span></a></li>
<li><a href="gal_love.html"><span>Love</span></a></li>
</ul>
</div>
<div>
</body>
</html>