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">
|
2020-05-08 19:04:19 +00:00
|
|
|
<link rel="stylesheet" href="dist/theme/black.css" id="theme">
|
2012-08-08 05:14:12 +00:00
|
|
|
|
2020-05-08 19:04:19 +00:00
|
|
|
<!-- Theme used for syntax highlighted code -->
|
2020-05-19 09:02:59 +00:00
|
|
|
<link rel="stylesheet" href="plugin/highlight/monokai.css" id="highlight-theme">
|
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-05-04 08:39:37 +00:00
|
|
|
<script src="dist/reveal.js"></script>
|
2020-05-18 18:52:51 +00:00
|
|
|
<script src="plugin/notes/notes.js"></script>
|
2020-05-18 12:41:56 +00:00
|
|
|
<script src="plugin/markdown/markdown.js"></script>
|
|
|
|
<script src="plugin/highlight/highlight.js"></script>
|
2011-12-05 02:07:33 +00:00
|
|
|
<script>
|
2020-05-18 18:52:51 +00:00
|
|
|
// More info about initialization & config:
|
2020-05-19 16:27:00 +00:00
|
|
|
// - https://revealjs.com/initialization/
|
|
|
|
// - https://revealjs.com/config/
|
2012-08-12 00:25:55 +00:00
|
|
|
Reveal.initialize({
|
2019-06-10 04:57:07 +00:00
|
|
|
hash: true,
|
2020-05-18 18:52:51 +00:00
|
|
|
|
2020-05-19 16:27:00 +00:00
|
|
|
// Learn about plugins: https://revealjs.com/plugins/
|
2020-04-23 07:39:26 +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>
|