-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
40 lines (35 loc) · 1.24 KB
/
home.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
<!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 Home</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>
<link rel="stylesheet" href="styles.css" type="text/css" media="all" />
<script type="text/javascript">
$(document).ready(function() {
$('#nav').load("nav.html");
$('#toppanel').load("login.html");
});
</script>
<!-- Panel -->
<div id="toppanel"></div>
<br/>
<div id="nav" page="home"></div>
<br/>
<div id="container">
<div id="animal"></div>
<div id="bridge"></div>
<div id="people"></div>
<div id="profession"></div>
<div id="romantic"></div>
<div id="abstract"></div>
<div>
</body>
</html>