barebones.html 678 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>reveal.js - Barebones</title>
  6. <link rel="stylesheet" href="../../css/reveal.css">
  7. </head>
  8. <body>
  9. <div class="reveal">
  10. <div class="slides">
  11. <section>
  12. <h2>Barebones Presentation</h2>
  13. <p>This example contains the bare minimum includes and markup required to run a reveal.js presentation.</p>
  14. </section>
  15. <section>
  16. <h2>No Theme</h2>
  17. <p>There's no theme included, so it will fall back on browser defaults.</p>
  18. </section>
  19. </div>
  20. </div>
  21. <script src="../../js/reveal.js"></script>
  22. <script>
  23. Reveal.initialize();
  24. </script>
  25. </body>
  26. </html>