forked from ReDI-School/js-2025-fall
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (55 loc) · 2.43 KB
/
index.html
File metadata and controls
56 lines (55 loc) · 2.43 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Spring 2026 ReDI JavaScript course</title>
<link rel="preconnect" href="https://unpkg.com" />
<link
rel="stylesheet"
href="https://unpkg.com/reveal.js@^4/dist/reset.css"
/>
<link
rel="stylesheet"
href="https://unpkg.com/reveal.js@^4/dist/reveal.css"
/>
<link
rel="stylesheet"
href="https://unpkg.com/reveal.js@^4/dist/theme/black.css"
/>
<link
rel="stylesheet"
href="https://unpkg.com/highlight.js@10/styles/vs2015.css"
id="highlight-theme"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown="toc.md" data-charset="utf-8"></section>
<section data-markdown="lesson01.md" data-charset="utf-8"></section>
<section data-markdown="lesson02.md" data-charset="utf-8"></section>
<section data-markdown="lesson03.md" data-charset="utf-8"></section>
<section data-markdown="lesson04.md" data-charset="utf-8"></section>
<section data-markdown="lesson05.md" data-charset="utf-8"></section>
<section data-markdown="lesson06.md" data-charset="utf-8"></section>
<section data-markdown="lesson07.md" data-charset="utf-8"></section>
<section data-markdown="lesson08.md" data-charset="utf-8"></section>
<section data-markdown="lesson09.md" data-charset="utf-8"></section>
<section data-markdown="lesson10.md" data-charset="utf-8"></section>
<section data-markdown="lesson11.md" data-charset="utf-8"></section>
<section data-markdown="lesson12.md" data-charset="utf-8"></section>
<section data-markdown="lesson13.md" data-charset="utf-8"></section>
<section data-markdown="lesson14.md" data-charset="utf-8"></section>
<section data-markdown="lesson15.md" data-charset="utf-8"></section>
<!-- NEW_SECTION_HERE -->
</div>
</div>
<script src="https://unpkg.com/reveal.js@^4/dist/reveal.js"></script>
<script src="https://unpkg.com/reveal.js@^4/plugin/markdown/markdown.js"></script>
<script src="https://unpkg.com/reveal.js@^4/plugin/highlight/highlight.js"></script>
<script src="https://unpkg.com/reveal.js@^4/plugin/zoom/zoom.js"></script>
<script src="https://unpkg.com/reveal.js@^4/plugin/search/search.js"></script>
<script src="main.js"></script>
</body>
</html>