-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 1.72 KB
/
Copy pathindex.html
File metadata and controls
50 lines (50 loc) · 1.72 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My RevealJS Slideshow</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.5.0/reveal.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.5.0/theme/black.min.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h1>Welcome to My Presentation</h1>
<p>Use the arrow keys to navigate.</p>
</section>
<section>
<h2>Slide 2 Content</h2>
<p>This is a standard horizontal slide.</p>
</section>
<section>
<section>
<h2>Slide 3 (Top)</h2>
<p>Press the DOWN arrow to see the next nested slide.</p>
</section>
<section>
<h2>Slide 3 (Bottom)</h2>
<p>You navigated vertically!</p>
</section>
</section>
<section>
<h2>Incremental Reveal</h2>
<p class="fragment">This appears first...</p>
<p class="fragment">Then this appears next...</p>
<p class="fragment">Finally, this appears.</p>
</section>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.5.0/reveal.min.js"></script>
<script>
Reveal.initialize({
hash: true,
controls: true,
progress: true,
center: true,
transition: 'slide'
});
</script>
</body>
</html>