-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathinformation.html
More file actions
142 lines (111 loc) · 4.38 KB
/
Copy pathinformation.html
File metadata and controls
142 lines (111 loc) · 4.38 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1.0" content = "no-cache">
<title>About - URCSSA</title>
<link href="main.css" rel="stylesheet" type="text/css" />
<title>Information - URCSSA</title>
</head>
<body>
<!--<nav id = "navbar"></nav>-->
<div id="navbar">
<nav>
<ul>
<li class="dropdown" id="homeDrop"><a id="homeButton" href=index.html>Home</a></li>
<li class="dropdown" id="INFORMATIONDrop">
<a href="javascript:navigate(CONTENT_TABLE.ABOUT.LANDING)" class="drop_button clickable"> About</a>
<div class="drop_content">
<a href="javascript:navigate(CONTENT_TABLE.ABOUT.MISSION)">Our Mission and Vision</a>
<a href="javascript:navigate(CONTENT_TABLE.ABOUT.TEAM)">Meet Our Team</a>
</div>
</li>
<li class="dropdown" id="infoDrop">
<a href="javascript:navigate(CONTENT_TABLE.INFORMATION.LANDING)" class="drop_button clickable">Information</a>
<div class="drop_content">
<a href="javascript:navigate(CONTENT_TABLE.INFORMATION.RESOURCES)" id="resourcesButton">Resources</a>
<a href="javascript:navigate(CONTENT_TABLE.INFORMATION.FAQ)" id="faqButton">FAQs</a>
</div>
</li>
<li class="dropdown">
<a href="javascript:navigate(CONTENT_TABLE.ACTIVITIES.LANDING)" class="drop_button clickable">Activities</a>
<div class="drop_content">
<a href="javascript:navigate(CONTENT_TABLE.ACTIVITIES.PAST)"> Past Activities</a>
</div>
</li>
<li><a href="javascript:navigate(CONTENT_TABLE.CONTACT)" class="clickable">Contact us</a></li>
<li class="navBarLogo">
<a href=index.html><img id="logo1" src="devResources/cssaLOGO.png" alt="logo1" height="30"/></a>
</li>
</ul>
</nav>
</div>
<div id = "rowBanner">
<div class = "rowBannerImg" id = "rowBannerImg">
<img src = "devResources/infoBanner.jpg" />
</div>
</div>
<div id="sideBarContainer">
<ul>
<li><a href="javascript:navigate(CONTENT_TABLE.INFORMATION.LANDING)">Information</a></li>
<li><a href="javascript:navigate(CONTENT_TABLE.INFORMATION.RESOURCES)">Useful Resources</a></li>
<li><a href="javascript:navigate(CONTENT_TABLE.INFORMATION.FAQ)">FAQ</a></li>
</ul>
</div>
<div id="primaryContent">
<div id="information">
<h1>Information</h1>
<p>
Welcome to University of Richmond CSSA! We are excited to share with you information about our team,
activities, and many useful resources and information for incoming and returning students
alike. We hope you find our site helpful in assisting your journey at UR.
</p>
</div>
</div>
<div class="footer">
<div class="footerContent">
<div class="footerTitle">
<a href = "http://www.richmond.edu">
University of Richmond
</a>
</div>
<div class="footerText">
28 Westhampton Way
<br>Richmond, VA 23173
</div>
<p class="footerText">
<small>
©URCSSA 2016-2018
</small>
</p>
</div>
<div class="footerContent">
<div class="footerTitle">
Follow Us
</div>
<div class = "footerContent">
<img id="qrcode" src="devResources/qrCode.jpg" alt="qrcode" height="110"/>
</div>
</div>
<div class="footerContent">
<div class="footerTitle">
Contact Us
</div>
<div class = "footerContent">
<div class="iconWrapper">
<a href="mailto:cssa@richmond.edu"> <img class="emailIcon" src="devResources/emailIcon.png" alt="email" height="25"/> </a>
</div>
</div>
</div>
<div class = "footerContent">
<div class = "footerTitle">
Disclaimer
</div>
<div class="footerContent">
<a href = "disclaimer.html">View disclaimer</a>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript" src="getMainContent.js"></script>
</body>
</html>