-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule.html
36 lines (33 loc) · 1.13 KB
/
schedule.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>DMNollK - Schedule</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="image_logo.png">
</head>
<body>
<header>
<div id="logo-and-nav">
<div id="logo-and-hamburger">
<img id="header-logo-small" src="image_logo.png" alt="DMNollK logo">
<a id="hamburger" href="javascript:void(0)">☰</a>
</div>
<nav id="header-nav">
<a href="index.html">Home</a>
<a href="schedule.html" class="active-page">Schedule</a>
<a href="events.html">Events</a>
<a href="module.html">Module</a>
<a href="studies.html">Study at Chalmers</a>
</nav>
</div>
</header>
<main>
<iframe src="https://calendar.google.com/calendar/embed?src=493c612c89a38e5276ecc94c3438692872eb7546a613543174b9e4393da435b7%40group.calendar.google.com&ctz=Europe%2FStockholm"
style="border: 0" width="90%" height="600" frameborder="0" scrolling="no"></iframe>
</main>
<footer></footer>
<script src="webpage.js"></script>
</body>
</html>