forked from paulrouget/dzslides
-
Notifications
You must be signed in to change notification settings - Fork 13
/
template.html
78 lines (63 loc) · 2.16 KB
/
template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<meta charset="utf-8">
<title>The Title Of Your Presentation</title>
<!-- Your Slides -->
<!-- One section is one slide -->
<section>
<!-- This is the first slide -->
<h1>My Presentation</h1>
<footer>by John Doe</footer>
</section>
<section>
<p>Some random text: But I've never been to the moon! You can see how I lived before I met you. Also Zoidberg.
I could if you hadn't turned on the light and shut off my stereo.</p>
</section>
<section>
<h3>An incremental list</h3>
<ul class="incremental">
<li>Item 1
<li>Item 2
<li>Item 3
</ul>
<details>Some notes. They are only visible using onstage shell.</details>
</section>
<section>
<blockquote>
Who's brave enough to fly into something we all keep calling a death sphere?
</blockquote>
</section>
<section>
<h2>Part two</h2>
</section>
<section>
<figure> <!-- Figures are used to display images and videos fullpage -->
<img src="http://placekitten.com/g/800/600">
<figcaption>An image</figcaption>
</figure>
<details>Kittens are so cute!</details>
</section>
<section>
<figure> <!-- Videos are automatically played -->
<video src="http://videos-cdn.mozilla.net/brand/Mozilla_Firefox_Manifesto_v0.2_640.webm" poster="http://www.mozilla.org/images/about/poster.jpg"></video>
<figcaption>A video</figcaption>
</figure>
</section>
<section>
<h2>End!</h2>
</section>
<!-- Define the style of your presentation -->
<!-- Maybe a font from http://www.google.com/webfonts ? -->
<link href="http://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
<link href="themes/style/default.css" rel="stylesheet">
<!-- dzslides core styles -->
<link href="core/dzslides.css" rel="stylesheet">
<!-- slide transition (optional) -->
<link href="themes/transition/horizontal-slide.css" rel="stylesheet">
<!-- dzslides core script -->
<script src="core/dzslides.js"></script>
<!-- code syntax highlighting (optional) -->
<!--
<link href="http://yandex.st/highlightjs/7.0/styles/github.min.css" rel="stylesheet">
<script src="http://yandex.st/highlightjs/7.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
-->