-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·52 lines (45 loc) · 1.75 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
<!DOCTYPE html>
<html>
<head>
<title>Let's try this out</title>
<!-- Required stylesheet -->
<link rel="stylesheet" media="screen" href="../core/deck.core.css">
<!-- Extension CSS files go here. Remove or add as needed. -->
<link rel="stylesheet" media="screen" href="../extensions/goto/deck.goto.css">
<link rel="stylesheet" media="screen" href="../extensions/menu/deck.menu.css">
<link rel="stylesheet" media="screen" href="../extensions/navigation/deck.navigation.css">
<link rel="stylesheet" media="screen" href="../extensions/status/deck.status.css">
<link rel="stylesheet" media="screen" href="../extensions/scale/deck.scale.css">
<!-- Style theme. More available in /themes/style/ or create your own. -->
<link rel="stylesheet" href="../themes/style/swiss.css">
<!-- Transition theme. More available in /themes/transition/ or create your own. -->
<link rel="stylesheet" media="screen" href="../themes/transition/horizontal-slide.css">
<!-- Basic black and white print styles -->
<link rel="stylesheet" media="print" href="../core/print.css">
<!-- Required Modernizr file -->
<script src="../modernizr.custom.js"></script>
</head>
<body>
<div class="deck-container">
<section class="slide">
<h1>My Presentation</h1>
</section>
<section class="slide">
<h2>Slide Header</h2>
<p>Here is a list of points:</p>
<ul>
<li>Point 1</li>
<li>Point 2</li>
<li>Point 3</li>
</ul>
</section>
<section class="slide">
<h2>Another Slide</h2>
<blockquote cite="http://example.com">
<p>Lorem ipsum dolor sit amet.</p>
<p><cite>Cicero</cite></p>
</blockquote>
</section>
</div>
</body>
</html>