-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcalendar.html
54 lines (47 loc) · 1.79 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
<!--
Author: The JETSCAPE Collaboration
Date: 2023-04-02
This page shows the JETSCAPE Collaboration calendar.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NV11FXRRQX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);} gtag('js', new Date());
gtag('config', 'G-NV11FXRRQX');
</script>
<title>JETSCAPE Collaboration Calendar</title>
<meta charset="utf-8">
<meta name="description" content="JETSCAPE Calendar">
<meta name="keywords" content="calendar, events, meetings">
<meta name="author" content="The JETSCAPE Collaboration">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<div id="containerFlexible">
<!-- header -->
<div class="header">
<a href="index.html">
<img src="images/jetscape_home_logo.jpg" alt="JETSCAPE Logo" class="logo"
></a>
<h1>JETSCAPE Collaboration Calendar</h1>
</div>
<!-- insert navigation bar -->
<script id="insert_menu" src="scripts/nav.js"></script>
<!-- main content -->
<!-- embeds the Google Calendar used to show JETSCAPE meetings -->
<div>
<div>
<p id="calendar">
<iframe src="https://calendar.google.com/calendar/embed?height=600&wkst=1&bgcolor=%23ffffff&ctz=America%2FNew_York&src=NXNsb3Z2bW05Mm9rOTF2ZTJkODBmMGpwbjRAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ&color=%23009688" style="border:solid 1px #777; border:0; overflow:hidden;" width="800" height="600"></iframe>
</p>
</div>
</div>
<!-- insert footer -->
<script id="insert_footer" src="scripts/foot.js"></script>
</div>
</body>