forked from hakimel/reveal.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (79 loc) · 2.84 KB
/
index.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
79
80
81
82
83
84
85
86
87
88
89
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>reveal.js</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/zivid.css">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/atom-one-light.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown>
# Zivid template
## Author / date
### Subtitle
</section>
<section>
<img src="/dist/theme/images/ZividLogo(dark).svg"/>
</section>
<section data-markdown>
## Source code
```c++ [1|2-4]
int main()
{
return 40 + 2;
}
```
</section>
<section data-markdown>
## Testing the template
- Bullets
- Link with title to [Zivid](http://zivid.com)
- Regular link to http://zivid.com
</section>
<section>
<h2>Font styles</h2>
<ul>
<li style="font-weight: lighter;">lighter</li>
<li style="font-weight: normal;">normal</li>
<li style="font-weight: bold;">bold</li>
<li style="font-weight: 900;">900</li>
</ul>
<ul>
<li style="font-weight: lighter;"><em>lighter</em></li>
<li style="font-weight: normal;"><em>normal</em></li>
<li style="font-weight: bold;"><em>bold</em></li>
<li style="font-weight: 900;"><em>900</em></li>
</ul>
</section>
<section data-markdown>
## Table
|foo|bar|baz|
|---|---|---|
|foo|bar|baz|
|foo|bar|baz|
|foo|bar|baz|
</section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
});
</script>
</body>
</html>