-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (51 loc) · 1.51 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GitHub Copilot Presentation</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="node_modules/reveal.js/dist/reveal.css">
<link rel="stylesheet" href="node_modules/reveal.js/dist/theme/moon.css" id="theme">
</head>
<body>
<style>
.reveal {
font-size: 18px;
}
.reveal h1 {
font-size: 2.75em;
}
.reveal h2 {
font-size: 2.25em;
}
.reveal h3 {
font-size: 2.0em;
}
.reveal p {
font-size: 1.5em;
}
.reveal li {
font-size: 1.5em;
}
</style>
<div class="reveal">
<div class="slides">
<section data-markdown="slides.md" data-separator="^\n---\n$" data-separator-vertical="^\n--\n$" data-separator-notes="^Note:"></section>
</div>
</div>
<script src="node_modules/reveal.js/dist/reveal.js"></script>
<script src="node_modules/reveal.js/plugin/markdown/markdown.js"></script>
<script src="node_modules/reveal.js/plugin/highlight/highlight.js"></script>
<script>
Reveal.initialize({
hash: true,
markdown: {
smartypants: true
},
disableLayout: false,
center: true,
plugins: [ RevealMarkdown, RevealHighlight ]
});
</script>
</body>
</html>