-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprogram.html
More file actions
37 lines (30 loc) · 946 Bytes
/
program.html
File metadata and controls
37 lines (30 loc) · 946 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>IceCube Workshop 2019</title>
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="icon" href="https://markalab.github.io/lsst/imgs/icon.png">
<link href='https://fonts.googleapis.com/css?family=Advent Pro' rel='stylesheet'>
</head>
<body>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="index.html">Overview</a>
<a href="program.html">Program</a>
</div>
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰ open</span>
<center>
<h2> Program</h2>
</center>
<script>
function openNav() {
document.getElementById("mySidenav").style.width = "250px";
document.getElementById("main").style.marginLeft = "250px";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
document.getElementById("main").style.marginLeft= "0";
}
</script>
</body>
</html>