-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
59 lines (54 loc) · 1.61 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
<!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">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Garuda Javascript 2</title>
<link rel="stylesheet" href="asset/reveal.css">
<link rel="stylesheet" href="asset/black.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="asset/zenburn.css">
<script type="text/javascript" src="src/garuda.js"></script>
<style>
input[type=text] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border: 2px solid red;
border-radius: 4px;
font-size: 100%;
}
</style>
</head>
<body>
<div class="reveal">
<div class="slides">
<section id="page-one"></section>
<section id="page-two"></section>
<section id="page-three"></section>
</div>
</div>
<script src="asset/head.min.js"></script>
<script src="asset/reveal.js"></script>
<script>
// More info about config & dependencies:
// - https://github.com/hakimel/reveal.js#configuration
// - https://github.com/hakimel/reveal.js#dependencies
Reveal.initialize({
dependencies: [
{ src: 'asset/marked.js' },
{ src: 'asset/markdown.js' },
{ src: 'asset/notes.js', async: true },
{ src: 'asset/highlight.js', async: true,
callback: function() {
hljs.initHighlightingOnLoad();
} }
]
});
</script>
<script src="asset/init.js"></script>
<script src="asset/app.js"></script>
</body>
</html>