1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <meta
- name="viewport"
- content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
- />
- <title>reveal.js</title>
- <link rel="stylesheet" href="css/reset.css" />
- <link rel="stylesheet" href="css/reveal.scss" />
- <link rel="stylesheet" href="css/theme/black.scss" />
- <!-- Theme used for syntax highlighted code -->
- <link rel="stylesheet" href="plugin/highlight/monokai.css" />
- </head>
- <body>
- <div class="reveal">
- <div class="slides">
- <section>Slide 1</section>
- <section>Slide 2</section>
- </div>
- </div>
- <script type="module">
- import Reveal from 'reveal.js';
- import RevealNotes from 'reveal.js/plugin/notes';
- import RevealMarkdown from 'reveal.js/plugin/markdown';
- import RevealHighlight from 'reveal.js/plugin/highlight';
- // More info about initialization & config:
- // - https://revealjs.com/initialization/
- // - https://revealjs.com/config/
- Reveal.initialize({
- hash: true,
- // Learn about plugins: https://revealjs.com/plugins/
- plugins: [RevealMarkdown, RevealHighlight, RevealNotes],
- });
- </script>
- </body>
- </html>
|