-
Notifications
You must be signed in to change notification settings - Fork 1
/
calendar.html
32 lines (27 loc) · 1.11 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
<!DOCTYPE html>
<html style="background-color: lightgray;">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Green Mountain Robotics: Team Calendar</title>
<link href="style.css" rel="stylesheet" type="text/css">
<link rel="icon" type="image/x-icon" href="/images/websitelogo.png">
</head>
<body>
<div class="topbar">
<a href="/index.html">Home</a>
<a href="/sponsor.html">Sponsors</a>
<a href="/join.html">Join</a>
<a class="active" href="/calendar.html">Calendar</a>
<!-- <a href="/CAD-page.html">CAD Page</a> -->
</div>
<div class="content1" style="text-align: center; height: inherit; padding-top: 7%;">
<iframe src="https://embed.styledcalendar.com/#T73v3Q7S3w3d7oVGEFWa" title="Styled Calendar"
class="styled-calendar-container" style="width: 100%; border: none; margin-bottom: 5%;" data-cy="calendar-embed-iframe"
id="myFrame"></iframe>
<script async type="module" src="https://embed.styledcalendar.com/assets/parent-window.js"></script>
<div class="link-block"></div>
</div>
</body>
<script src="script.js"></script>
</html>