返回 reveal.js
barebones.html
根目录 / examples / barebones.html
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="../dist/reveal.css" />
7 </head>
8 <body>
9 <div class="reveal">
10 <div class="slides">
11 <section>
12 <h2>Barebones Presentation</h2>
13 <p>
14 This example contains the bare minimum includes and markup required to run a reveal.js
15 presentation.
16 </p>
17 </section>
18
19 <section>
20 <h2>No Theme</h2>
21 <p>There's no theme included, so it will fall back on browser defaults.</p>
22 </section>
23 </div>
24 </div>
25
26 <script src="../dist/reveal.js"></script>
27 <script>
28 Reveal.initialize();
29 </script>
30 </body>
31 </html>
32
32 lines HTML