-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcalendar.html
39 lines (34 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<title>UMN Kernel Object</title>
</head>
<body>
<header class="w3-container">
<h1>UMN Kernel Object</h1>
<hr>
<div class="w3-bar w3-white w3-large">
<a href="index.html" class="w3-bar-item w3-button w3-mobile">Home</a>
<a href="about.html" class="w3-bar-item w3-button w3-mobile">About</a>
<a href="calendar.html" class="w3-bar-item w3-button w3-mobile">Calendar</a>
<a href="officers.html" class="w3-bar-item w3-button w3-mobile">Officers</a>
</div>
</header>
<div class="w3-container w3-center">
<div class="container">
<iframe
src="https://calendar.google.com/calendar/embed?height=600&wkst=1&bgcolor=%23ffffff&ctz=America%2FChicago&title=UKO%20Events&src=Y19iYzFkMmMwM2JhMDNjMDBjMjE2ZTQyMGFhNmMyMzlkZGQ5NjlkNDc5MDJkNTJmOGYzMDM0MTdiOWY2MDlkNTBiQGdyb3VwLmNhbGVuZGFyLmdvb2dsZS5jb20&color=%23009688"
style="border:solid 1px #777" width="800" height="600" frameborder="0" scrolling="no"></iframe>
</div>
</div>
<footer class="w3-container">
<hr>
<div class="w3-container w3-center">
<h5>Footer</h5>
<p>Footer information goes here</p>
</div>
</footer>
</html>