-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathblank.html
48 lines (45 loc) · 1.2 KB
/
blank.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hello, S6 Blank!</title>
<link rel="stylesheet" href="css/screen.css">
</head>
<body>
<article id="presentation">
<section>Slide 1</section>
<section>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<p>Paragraph</p>
</section>
<section>Slide 3</section>
<section>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<p>Paragraph</p>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<p>Paragraph</p>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<p>Paragraph</p>
</section>
<section>Slide 5</section>
</article>
<script src="js/slides.keys.js"></script>
<script src="js/slides.progress.js"></script>
<script src="js/slides.classes.js"></script>
<script src="js/slides.kernel.js"></script>
<script>
const {Deck, classes, keys, progress} = S6;
const deck = new Deck( { parent: "#presentation",
plugins: [classes(), keys(), progress()] });
deck.next();
</script>
</body>
</html>