-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.html
61 lines (56 loc) · 2.5 KB
/
info.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
51
52
53
54
55
56
57
58
59
60
61
<!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 Info</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");
$("#accordion").accordion();
});
</script>
<div id="nav" page="info"></div>
<div id="container">
<div id="accordion">
<h3><a href="#">What is a Photography Club?</a></h3>
<div>
<p>
A Club where anyone with passion for any sort of photo's can come and feel at home. We meet and share the knowledge pertaining to a wide range of photographs. A place for new commers to learn about the skill and percision involved in mastering the skill of photography.
</p>
</div>
<h3><a href="#">Who is welcome?</a></h3>
<div>
<p>
Anyone with a passion for photo's or anyone willing to explore this field. Everyone is welcomed with open arms.
</p>
</div>
<h3><a href="#">What is required</a></h3>
<div>
<p>
We do not have any requirements as to what you should have. We know not everyone has a DSLR and we welcome anyone and are able to help anyone with the questions they may have if we can do so. Feel free to come and teach others who may want to purchase a camera or even learn how to use their existing one.
</p>
</div>
<h3><a href="#">Rules</a></h3>
<div>
<p>
There are no rules written in stone. But we do have a few guidlines we abide by.
</p>
<ul>
<li>1. The goal is to teach others and let the art of photograpgy expand. Thus be considerate when voicing strong opinions.</li>
<li>2. Will not tolerate any sort of abuse/violence or misuse of the club resources</li>
<li>3. Have fun! :)</li>
</ul>
</div>
</div>
<div>
</body>
</html>