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