forked from CarletonComputerScienceSociety/website-2012
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (50 loc) · 2.31 KB
/
index.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
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
93
94
95
96
<!DOCTYPE html>
<html>
<head>
<meta id="viewport" name="viewport" content ="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title> CCSS: Carleton Computer Science Society </title>
<meta charset="UTF-8">
<script type = "text/javascript" src = "res/jquery-2.0.3.js"></script>
<script type = "text/javascript" src = "res/jquery.transit.min.js"></script>
<script type = "text/javascript" src = "res/waypoints.js"></script>
<script type = "text/javascript" src = "scripts/sections.js"></script>
<script type = "text/javascript" src = "scripts/nav.js"></script>
<script type = "text/javascript" src = "scripts/init.js"></script>
<!-- Normal Styles -->
<link rel="stylesheet" type="text/css" href="styles/global.css"></link>
<link href='http://fonts.googleapis.com/css?family=Roboto:300,100' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="styles/sectionsL.css"></link>
<link rel="stylesheet" type="text/css" href="styles/sectionsR.css"></link>
<!-- Mobile Styles -->
<link rel="stylesheet" type="text/css" href="styles/mobile.css" media = "screen and (max-width: 1023px)"></link>
<script type="text/javascript">
function init()
{
$(window).load(function()
{
siteInit();
});
}
init();
</script>
</head>
<body>
<!-- Dynamic Elements (placed by jquery, non-natural flow) -->
<!-- None, I guess -->
<!-- Fixed Elements -->
<div id = "headWrapper">
<a id = "headerLogo" href = "#headWrapper"> <img id = "headerLogo" src = "img/ccss.png"></img> </a>
<a href = "#headWrapper" id = "link1" style="text-decoration: none"> <h2 id = "title1" > Events </h2> </a>
<a href = "#headWrapper" id = "link2" style="text-decoration: none"> <h2 id = "title2" > Podcast </h2> </a>
<a href = "#headWrapper" id = "link3" style="text-decoration: none"> <h2 id = "title3" > About Us </h2> </a>
</div>
<!-- Regular Flow Elements -->
<div id = "spacer"></div>
<div class = "sectionDiv" id = "div1"></div>
<div class = "sectionDiv" id = "div2"></div>
<div class = "sectionDiv" id = "div3"></div>
<div id = "bottomSpacer">
<h4>Website Developed by <a href = "http://www.devcon1.ca" style = "color: #ffffff;"> Connor Hicks </a> </h4>
</div>
</body>
</html>