Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 1 | <!doctype html> |
Marc Kupietz | 09b7575 | 2023-10-07 09:32:19 +0200 | [diff] [blame] | 2 | <html lang="en"> |
Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 3 | <head> |
| 4 | <meta charset="utf-8"> |
| 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> |
| 6 | |
| 7 | <title>reveal.js</title> |
| 8 | |
| 9 | <link rel="stylesheet" href="dist/reset.css"> |
| 10 | <link rel="stylesheet" href="dist/reveal.css"> |
| 11 | <link rel="stylesheet" href="dist/theme/black.css"> |
| 12 | |
| 13 | <!-- Theme used for syntax highlighted code --> |
| 14 | <link rel="stylesheet" href="plugin/highlight/monokai.css"> |
| 15 | </head> |
| 16 | <body> |
| 17 | <div class="reveal"> |
| 18 | <div class="slides"> |
| 19 | <section>Slide 1</section> |
| 20 | <section>Slide 2</section> |
| 21 | </div> |
| 22 | </div> |
| 23 | |
| 24 | <script src="dist/reveal.js"></script> |
| 25 | <script src="plugin/notes/notes.js"></script> |
| 26 | <script src="plugin/markdown/markdown.js"></script> |
| 27 | <script src="plugin/highlight/highlight.js"></script> |
| 28 | <script> |
| 29 | // More info about initialization & config: |
| 30 | // - https://revealjs.com/initialization/ |
| 31 | // - https://revealjs.com/config/ |
| 32 | Reveal.initialize({ |
| 33 | hash: true, |
| 34 | |
| 35 | // Learn about plugins: https://revealjs.com/plugins/ |
| 36 | plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ] |
| 37 | }); |
| 38 | </script> |
| 39 | </body> |
| 40 | </html> |