-
Notifications
You must be signed in to change notification settings - Fork 0
/
calendar.html
72 lines (67 loc) · 2.89 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
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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Calendar</title>
<link rel="shortcut icon" href="">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
<style>
body{
padding-top:50px;
background-image: url("Images for Use/blue_fade.jpg");
}
.starter-template{
padding:40px 15px;
text-align:center;
}
.active a{
background: #3399ff !important;
}
p, h1, h2, h3, h4, h5, h6, ul, a{
font-family: serif;
}
</style>
<!--[if IE]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<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">SeLU ACM</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li class="active"><a href="calendar.html">Calendar</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</div><!--.nav-collapse -->
</div>
</nav>
<div class="container">
<div class="starter-template">
<center>
<p>
<iframe style="padding-right: 35px" src="https://calendar.google.com/calendar/embed?title=SeLU%20ACM%20Official%20Calendar&height=600&wkst=1&bgcolor=%23ffffff&src=psga6412%40selu.edu&color=%231B887A&ctz=America%2FChicago" style="border-width:0" width="1100" height="600" frameborder="0" scrolling="no"></iframe>
</p>
</center>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>