-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoffice_hours.html
93 lines (75 loc) · 5.66 KB
/
office_hours.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Do not cache this page -->
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="./style/style.css">
<!-- Optional JavaScript -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<!-- Emoji -->
<link href="https://emoji-css.afeld.me/emoji.css" rel="stylesheet">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Be+Vietnam+Pro&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<title>DSC 40B</title>
</head>
<body>
<!-- responsive sidebar code comes from https://stackoverflow.com/a/48477019 -->
<div class="container-fluid h-100">
<div class="nav row wrapper min-vh-100 flex-column flex-sm-row">
<aside class="col-12 col-sm-3 p-0 bg-light flex-shrink-1">
<nav class="navbar navbar-expand-sm navbar-light bg-light align-items-end flex-sm-column flex-row">
<a class="navbar-brand" href="#"><i class="fa fa-bullseye fa-fw"></i>DSC 40B</a>
<a href class="navbar-toggler" data-toggle="collapse" data-target=".sidebar">
<span class="navbar-toggler-icon"></span>
</a>
<div class="collapse navbar-collapse sidebar">
<ul class="flex-column navbar-nav w-100 justify-content-between">
<li class="nav-item">
<a class="nav-link" href="./index.html"><span class="">🗓️ Schedule</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./syllabus.html"><span class="">⚖️ Syllabus</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./office_hours.html"><span class="">👨🏫️ Office Hours</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./materials/default/notes/book.pdf"><span class="">📖 Course Notes</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./practice/index.html"><span class="">🎯 Practice</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://campuswire.com/p/GF9D7D784"><span class="">💬 Campuswire</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.gradescope.com/courses/937203"><span class="">💯 Gradescope</span></a>
</li>
</ul>
</div>
</nav>
</aside>
<main class="col bg-faded main-content">
<div class="site-title">
<h1>DSC 40B – Theoretical Foundations of Data Science II</h1>
<hr>
</div>
<h1 id="office-hours">👨🏫️ Office Hours</h1>
<p>We will be offering a variety of ways to connect with course staff this quarter.
Check the title of the calendar event to see whether the office hour is
in-person-only, remote-only, or hybrid.</p>
<iframe src="https://calendar.google.com/calendar/embed?height=600&wkst=2&ctz=America%2FLos_Angeles&showPrint=0&mode=WEEK&src=Y183ODY0MGEwNTA5NmU3OGVjYTViYjIxYzZkZjc5NDA3NjZiN2UyNTBmNjk3NWVhNDk5OGU1ZGFkNjg4NDEzNTI3QGdyb3VwLmNhbGVuZGFyLmdvb2dsZS5jb20&color=%23EF6C00" style="border:solid 1px #777" width="800" height="600" frameborder="0" scrolling="no"></iframe>
</main>
</div>
</div>
</body>
</html>