diff options
author | Marvin Borner | 2019-04-01 20:16:24 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-01 20:16:24 +0200 |
commit | 83b56d1270cdb179b64a1be51f8c1e7fe586c35e (patch) | |
tree | ae40a84def05eb42c53305e0caa8c2a2440fce71 /test/examples/barebones.html | |
parent | 0b3e7839ebf4ed8b6c180aca0abafa28c67aee6d (diff) |
Added content
Diffstat (limited to 'test/examples/barebones.html')
-rw-r--r-- | test/examples/barebones.html | 47 |
1 files changed, 24 insertions, 23 deletions
diff --git a/test/examples/barebones.html b/test/examples/barebones.html index 2bee3cb..3791cae 100644 --- a/test/examples/barebones.html +++ b/test/examples/barebones.html @@ -1,41 +1,42 @@ <!doctype html> <html lang="en"> - <head> - <meta charset="utf-8"> +<head> + <meta charset="utf-8"> - <title>reveal.js - Barebones</title> + <title>reveal.js - Barebones</title> - <link rel="stylesheet" href="../../css/reveal.css"> - </head> + <link href="../../css/reveal.css" rel="stylesheet"> +</head> - <body> +<body> - <div class="reveal"> +<div class="reveal"> - <div class="slides"> + <div class="slides"> - <section> - <h2>Barebones Presentation</h2> - <p>This example contains the bare minimum includes and markup required to run a reveal.js presentation.</p> - </section> + <section> + <h2>Barebones Presentation</h2> + <p>This example contains the bare minimum includes and markup required to run a + reveal.js presentation.</p> + </section> - <section> - <h2>No Theme</h2> - <p>There's no theme included, so it will fall back on browser defaults.</p> - </section> + <section> + <h2>No Theme</h2> + <p>There's no theme included, so it will fall back on browser defaults.</p> + </section> - </div> + </div> - </div> +</div> - <script src="../../js/reveal.js"></script> +<script src="../../js/reveal.js"></script> - <script> +<script> - Reveal.initialize(); + Reveal.initialize(); - </script> +</script> - </body> +</body> </html> |