barebones.html 737 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.min.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="../../lib/js/head.min.js"></script>
  22. <script src="../../js/reveal.min.js"></script>
  23. <script>
  24. Reveal.initialize();
  25. </script>
  26. </body>
  27. </html>