-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (90 loc) · 4.02 KB
/
index.html
File metadata and controls
92 lines (90 loc) · 4.02 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head>
<title>Chico State Web Development Club - Home</title>
<meta charset="UTF-8">
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="scripts/jquery.fittext.js"></script>
<script src="scripts/scripts.js"></script>
<link rel="shortcut icon" href="favicon.ico" />
<link href='http://fonts.googleapis.com/css?family=Fenix' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="styles/main.css">
</head>
<body>
<div id="wrap">
<header>
<div id="topNav">
<h1 id="topHeader" class="Header">CSUCWDC</h1>
<a href="index.html" class="topLink">
<div id="navOne" class="TopNavButton">
<h3 class="NavHeader">Home</h3>
</div>
</a>
<a href="about/meetings.html" class="topLink">
<div id="navTwo" class="TopNavButton">
<h3 class="NavHeader">Meetings</h3>
</div>
</a>
<a href="about/info.html" class="topLink">
<div id="navThree" class="TopNavButton">
<h3 class="NavHeader">Info</h3>
</div>
</a>
<a href="about/tutorials.html" class="topLink">
<div id="navFour" class="TopNavButton">
<h3 class="NavHeader">Tutorials</h3>
</div>
</a>
<a href="about/about.html" class="topLink">
<div id="navFive" class="TopNavButton">
<h3 class="NavHeader">About</h3>
</div>
</a>
<a href="about/newsletters.html" class="topLink">
<div id="navSix" class="TopNavButton">
<h3 class="NavHeader">Newsletters</h3>
</div>
</a>
</div>
</header>
<section id="body">
<h1 class = "BodyHeader">Build your own website Spring 2014</h1>
<h1 class = "BodyHeader">Mondays at 2pm in OCNL 251</h1>
<h1 class = "BodyHeader">Thursdays at 1pm in PLMS 303</h1>
<div id="contentContainer">
<a href="about/tutorials.html" class="BodyLink">
<div id="postOne" class="BodyContent">
<h3 class="PostHeader">Tutorials</h3>
<p>Get started with our tutorial section</p>
</div>
</a>
<a href="about/meetings.html" class="BodyLink">
<div id="postTwo" class="BodyContent">
<h3 class="PostHeader">Meetings</h3>
<p>Meetings on Feb 10th and Feb 13th will cover CSS Basics!</p>
</div>
</a>
<a href="about/info.html" class="BodyLink">
<div id="postThree" class="BodyContent">
<h3 class="PostHeader">Info</h3>
<p>Find out what you will be learning about if you come to our meetings</p>
</div>
</a>
<a href="about/about.html" class="BodyLink">
<div id="postFour" class="BodyContent">
<h3 class="PostHeader">About</h3>
<p>Learn about how our club works</p>
</div>
</a>
</div>
</section>
<footer>
<h1 class="Header">Email CsuWebDev@Gmail.com for questions</h1>
<div id="contactInfo">
</div>
</footer>
</div>
</body>
</html>