-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModule-02_Introduction-to-Python.html
More file actions
60 lines (53 loc) · 1.85 KB
/
Copy pathModule-02_Introduction-to-Python.html
File metadata and controls
60 lines (53 loc) · 1.85 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
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Module 02 - Introduction to Python</title>
<meta name="author" content="Dr. Longland"/>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
<style type="text/css">
.underline { text-decoration: underline; }
</style>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reveal.js/dist/reveal.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reveal.js/dist/theme/solarized.css" id="theme"/>
<link rel="stylesheet" href="./presentation.css"/>
</head>
<body>
<div class="reveal">
<div class="slides">
<section id="sec-title-slide"><h1 class="title">Module 02 - Introduction to Python</h1><p class="subtitle"></p>
<h2 class="author">Dr. Longland</h2><p class="date">Created: 2025-01-09 Thu 08:46</p>
</section>
<section>
<section id="slide-org4d87e3e">
<h2 id="org4d87e3e">Test slide</h2>
<ul>
<li>This is a test slide</li>
</ul>
</section>
</section>
<section>
<section id="slide-orgfe9326b">
<h2 id="orgfe9326b">Test slide 2</h2>
<ul>
<li>And this is another</li>
</ul>
</section>
</section>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/reveal.js/dist/reveal.js"></script>
<script src="https://cdn.jsdelivr.net/npm/reveal.js/plugin/markdown/markdown.js"></script>
<script src="https://cdn.jsdelivr.net/npm/reveal.js/plugin/zoom/zoom.js"></script>
<script src="https://cdn.jsdelivr.net/npm/reveal.js/plugin/notes/notes.js"></script>
<script>
// Full list of configuration options available here:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
plugins: [RevealMarkdown, RevealZoom, RevealNotes],
width:1200, height:800, controlsLayout: 'edges',transition:'fade', slideNumber:'c', smaller:'true', center:'true', progress:'true', history:'true', rolling_links:'true', control:'true', overview:'true', mathjax:'true'
});
</script>
</body>
</html>