-
Notifications
You must be signed in to change notification settings - Fork 7
/
chapters.html
39 lines (36 loc) · 1.96 KB
/
chapters.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>MIDeL: Chapters</title>
<meta charset="utf-8">
<meta name="theme-color" content="#68ACC6">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="./assets/css/main.css" rel="stylesheet">
<link href="./assets/css/chapters.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="./assets/js/custom/main.js"></script>
<script src="./assets/js/custom/chapters.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QD6MB5R106"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QD6MB5R106');
</script>
</head>
<body>
<div id="top_menu"></div>
<div class="container">
<div class="row justify-content-center mb-5 mt-4">
<div class="col col-12 col-md-9 fs-5 text-center mb-2">
Each topic listed below consists of three individual Colab notebooks: one with Beginner-level content, one with Intermediate-level content, and one with Advanced-level content. Click on the “Go to Notebook” link to open a specific Colab notebook in a new tab. You will need to sign in with your Google account in order to fully utilize the capabilities of Google Colab.
</div>
</div>
<div id="chapters" class="accordion"></div>
</div>
<footer class="col-12 text-center bg-light text-muted mt-5"></footer>
</body>
</html>