-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (87 loc) · 3.07 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=1024, user-scalable=no" />
<title>Your deck.js Presentation</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Bree+Serif&family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap"
rel="stylesheet"
/>
<!-- 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"
/>
<!-- Style theme. More available in /themes/style/ or create your own. -->
<link rel="stylesheet" media="screen" href="themes/style/reset.css" />
<link rel="stylesheet" media="screen" href="themes/style/topdesk.css" />
<!-- Transition themes go here -->
<!-- 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">
<!-- Begin slides. Just make elements with a class of slide. -->
<section class="slide shape-small shape-large shape-bl shape-orange">
<h1><span class="robin" role=img" title="topdesk logomark"></span>Slide</h1>
</section>
<section class="slide shape-small shape-large shape-br shape-red">
<h2>Content</h2>
<p>a p</p>
<p class="slide">
nested slide
</p>
<p class="slide">
nested slide
</p>
<p class="slide">nested slide <a href="#">A link to nowhere</a></p>
</section>
<section class="slide">
<h1>Here</h1>
</section>
<!-- End slides. -->
<div class="small-shape"></div>
<div class="large-shape"></div>
<!-- Begin extension snippets. Add or remove as needed. -->
<!-- deck.goto snippet -->
<form action="." method="get" class="goto-form">
<label for="goto-slide">Go to slide:</label>
<input
type="text"
name="slidenum"
id="goto-slide"
list="goto-datalist"
/>
<datalist id="goto-datalist"></datalist>
<input type="submit" value="Go" />
</form>
<!-- End extension snippets. -->
</div>
<!-- Required JS files. -->
<script src="jquery.min.js"></script>
<script src="core/deck.core.js"></script>
<!-- Extension JS files. Add or remove as needed. -->
<script src="extensions/menu/deck.menu.js"></script>
<script src="extensions/goto/deck.goto.js"></script>
<!-- Initialize the deck. You can put this in an external file if desired. -->
<script>
$(function () {
$.deck(".slide");
});
</script>
</body>
</html>