-
Notifications
You must be signed in to change notification settings - Fork 2
/
calendar.html
41 lines (37 loc) · 1.64 KB
/
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
<html>
<head>
<title>Hackers@Berkeley</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="assets/css/calendar.css" />
<script src="assets/js/menu.js"></script>
</head>
<!-- http://www.webdesignerdepot.com/2012/04/integrating-google-calendar-with-your-website/ -->
<body>
<div id="top_bar">
<div id="outside_menu">
<nav role="navigation">
<div id="menuToggle">
<input type="checkbox" />
<span></span>
<span></span>
<span></span>
<ul id="menu">
<a href="index.html"><li>Home</li></a>
<a href="about.html"><li>About Us</li></a>
<a href="calendar.html"><li>Event Calendar</li></a>
<a href="https://medium.com/hackersatberkeley"><li>Hackers of Berkeley</li></a>
<a href="contact.html"><li>Contact Us</li></a>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSd-C6XUFoXVkrW-yJ0DkTCSx1EnA7VQj-DbWJVK5mLszGToYg/viewform"><li>Requests</li></a>
</ul>
</div>
</nav>
</div>
</div>
<div class="circle"></div>
<a href="index.html"><img class="logo"src="assets/img/h@b_logo.png"></a>
<div class=pagetitle> Calendar</div>
<div id="calendar">
<iframe src="https://calendar.google.com/calendar/embed?showTitle=0&showNav=0&showPrint=0&showTabs=0&showCalendars=0&showTz=0&height=800&wkst=1&bgcolor=%23FFFFFF&src=pv48o0bjvc6obihroulpk08f64%40group.calendar.google.com&color=%232F6309&ctz=America%2FLos_Angeles" style="border-width:0" width="1000" height="800" frameborder="0" scrolling="no"></iframe>
</div>
</body>
<html>