2012-10-21 03:14:50 +02:00
|
|
|
<!doctype html>
|
2016-03-20 18:50:14 +01:00
|
|
|
<html>
|
2011-06-07 21:10:59 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2016-03-20 18:57:30 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
2012-10-21 03:14:50 +02:00
|
|
|
|
2016-03-20 18:50:14 +01:00
|
|
|
<title>reveal.js</title>
|
2012-10-21 03:14:50 +02:00
|
|
|
|
2020-03-06 19:58:40 +01:00
|
|
|
<link rel="stylesheet" href="dist/reset.css">
|
|
|
|
<link rel="stylesheet" href="dist/reveal.css">
|
2020-05-08 21:04:19 +02:00
|
|
|
<link rel="stylesheet" href="dist/theme/black.css" id="theme">
|
2012-08-08 07:14:12 +02:00
|
|
|
|
2020-05-08 21:04:19 +02:00
|
|
|
<!-- Theme used for syntax highlighted code -->
|
2020-05-19 11:02:59 +02:00
|
|
|
<link rel="stylesheet" href="plugin/highlight/monokai.css" id="highlight-theme">
|
2011-06-07 21:10:59 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2012-06-03 23:30:37 +02:00
|
|
|
<div class="reveal">
|
2011-12-27 06:29:00 +01:00
|
|
|
<div class="slides">
|
2018-10-04 13:26:16 +02:00
|
|
|
<section>Slide 1</section>
|
|
|
|
<section>Slide 2</section>
|
2011-12-27 06:29:00 +01:00
|
|
|
</div>
|
2011-06-07 21:10:59 +02:00
|
|
|
</div>
|
2012-03-24 17:48:16 +01:00
|
|
|
|
2020-05-04 10:39:37 +02:00
|
|
|
<script src="dist/reveal.js"></script>
|
2020-05-18 20:52:51 +02:00
|
|
|
<script src="plugin/notes/notes.js"></script>
|
2020-05-18 14:41:56 +02:00
|
|
|
<script src="plugin/markdown/markdown.js"></script>
|
|
|
|
<script src="plugin/highlight/highlight.js"></script>
|
2011-12-05 03:07:33 +01:00
|
|
|
<script>
|
2020-05-18 20:52:51 +02:00
|
|
|
// More info about initialization & config:
|
2020-05-19 18:27:00 +02:00
|
|
|
// - https://revealjs.com/initialization/
|
|
|
|
// - https://revealjs.com/config/
|
2012-08-12 02:25:55 +02:00
|
|
|
Reveal.initialize({
|
2019-06-10 06:57:07 +02:00
|
|
|
hash: true,
|
2020-05-18 20:52:51 +02:00
|
|
|
|
2020-05-19 18:27:00 +02:00
|
|
|
// Learn about plugins: https://revealjs.com/plugins/
|
2020-04-23 09:39:26 +02:00
|
|
|
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
|
2012-08-12 02:25:55 +02:00
|
|
|
});
|
2012-08-04 21:53:52 +02:00
|
|
|
</script>
|
2011-06-07 21:10:59 +02:00
|
|
|
</body>
|
2012-08-04 06:33:27 +02:00
|
|
|
</html>
|