-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcalendar.html
41 lines (35 loc) · 2.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="./images/logo-svg.svg">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Chelsea+Market&family=Lexend+Deca:wght@400;500&family=Outfit:wght@200;300&family=Roboto+Mono:wght@180;700&family=Schoolbell&family=Space+Grotesk:wght@300&display=swap" rel="stylesheet">
<link href="./styles/styles.css" rel="stylesheet">
<link href="./styles/new-shit-greg-added.css" rel="stylesheet">
<title>Calendar | Vikings Robotics</title>
</head>
<body>
<div id="header"></div>
<div class="calendar-spacer"></div>
<div class="calendar-container">
<iframe src="https://calendar.google.com/calendar/embed?height=400&wkst=1&bgcolor=%23F4511E&ctz=America%2FLos_Angeles&showNav=1&showPrint=0&showCalendars=1&showTitle=1&title=Vikings%20Robotics%20Calendar&src=bGpoc3Zpa2luZ3JvYm90aWNzQGdtYWlsLmNvbQ&src=a24zdHM3aWY3MTlqdG1mdTdsZWQxOW91ZjhAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ&src=YmRvY2txMzk1amVjNWZjbnRobHFudTdkbXNAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ&src=MTRscnZkZzkxcmZnZjB1aXFhajRnOGYzOW9AZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ&src=djBic2FrcXRyNWhqcTF0bXRtdXJjbnVxMWtAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ&src=a2twdnNuMmE4a2hmcTltYzhpdnN1dHY0ZThAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ&src=dnUzYm9qdG1yanVlMGY4c3FjaWtncGRoMDRAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ&color=%237986CB&color=%23795548&color=%23F6BF26&color=%23F09300&color=%230B8043&color=%239E69AF&color=%238E24AA" style="border-width:0" width="600" height="400" frameborder="0" scrolling="no"></iframe>
</div>
<div class="mobile-message-container">
<h1>Google Calendar is not supported on this device</h1>
</div>
<div id="footer"></div>
<script src="https://code.jquery.com/jquery-3.6.0.js"integrity=" sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<script>
$(function(){
$("#header").load("header.html");
$("#footer").load("footer.html");
});
</script>
<script src="./src/script.js"></script>
</body>
</html>