This repository has been archived by the owner on Feb 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rowan-ACM-Calendar.html
137 lines (120 loc) · 5.8 KB
/
Rowan-ACM-Calendar.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
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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang=""> <!--<![endif]-->
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<title>Calendar</title>
<meta name="description" content=""/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<!-- Custom ACM CSS -->
<link href='css/ACM_CSS/custom.css' rel='stylesheet'>
<link rel="stylesheet" type="text/css" href="css/Rowan-ACM-Calendar.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<link href="css/bootstrap.min.css" rel="stylesheet"/>
<script src="js/bootstrap_js/bootstrap.min.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<script>window.html5 || document.write('<script src="js/vendor/html5shiv.js"><\/script>')</script>
<![endif]-->
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an
<strong>outdated</strong> browser. Please
<a href="http://browsehappy.com/">upgrade your browser
</a> to improve your experience.</p>
<![endif]-->
<!-- Navbar -->
<div align="center">
<div style='width: 72%'>
<nav class="navbar navbar-inverse">
<!-- ACM Logo -->
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed"
data-toggle="collapse"
data-target="#bs-example-navbar-collapse-1"
aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">
<img src="images/acm_logo.jpg" alt="ACM Logo"></a>
</div>
<!-- Committees Dropdown -->
<div class="collapse navbar-collapse"
id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="#" class="dropdown-toggle"
data-toggle="dropdown" role="button"
aria-haspopup="true" aria-expanded="false">
Comittees <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="webDevelopment.html">Web Development</a></li>
<li><a href="androidDevelopment.html">Android Development</a></li>
<li><a href="animationTeam.html">Animation Team</a></li>
<li><a href="AIteam.html">AI Team</a></li>
</ul>
</li>
<!-- Events link -->
<li><a href="Rowan-ACM-Calendar.html">Events</a></li>
<!-- Board Members link -->
<li><a href="boardMembers.html">Board Members</a></li>
<!-- Contact Us link -->
<li><a href="emailForm.html">Contact Us</a></li>
</ul>
</div>
</div>
</nav>
</div>
</div>
<!--Embedded Google Calendar-->
<div align="center">
<div class="border" style="width: 70%">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-9 col-md-9 col-lg-9">
<div class="responsive-iframe-container-fullscreen">
<iframe src="https://www.google.com/calendar/embed?showTz=0&src=students.rowan.edu_gj0umqr01gtm1ofgc576fu3ujs%40group.calendar.google.com&ctz=America/New_York"
style="border: 0" width="900" height="600" frameborder="0" scrolling="no">
</iframe>
</div>
</div>
</div>
</div>
</div>
</div>
<br>
<!-- Footer -->
<div align="center">
<div style="width: 72%">
<nav class="navbar navbar-inverse">
<div>
<a href="#">About</a>
|
<a href="http://www.acm.org/">ACM Main Site</a>
</div>
<div>
<span>
<a href="https://www.facebook.com/rowanacm">
<img src="images/facebook_logo/FB-f-Logo__blue_29.png" alt="facebook"/>
</a>
</span>
<span>
<a href='https://github.com/RowanACM'>
<img src='images/github_logo/GitHub-Mark-Light-32px.png' alt='github'/>
</a>
</span>
</div>
<p>ACM Website developed by the ACM Web Development Team 2015</p>
</nav>
</div>
</div>
</body>
</html>