-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (56 loc) · 1.36 KB
/
index.html
File metadata and controls
63 lines (56 loc) · 1.36 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
51
52
53
54
55
56
57
58
59
60
61
62
63
<html>
<head>
<!-- Slideshows - start -->
<script src="./jQuery/jquery-3.2.1.min.js"></script>
<script src="./slideshow/slideshow.js"></script>
<meta name="slideshow" theme="original" />
<!-- Slideshows - end -->
<style>
html {
font-family: sans-serif;
}
body {
margin: 0;
padding: 0;
}
.big-header {
font-size: 3em;
width: 36%;
margin: 50px auto;
}
.full-size-slider-demo {
width: 100%;
height: 80%;
margin: 0;
}
.small-size-slider-demo {
width: 600px;
height: 300px;
margin: 0 auto;
}
.information {
width: 30%;
margin: 0px auto;
margin-bottom: 20px;
text-align: center;
}
.information p {
margin: 20px;
}
</style>
</head>
<body>
<header>
<h1 class="big-header">Dequillas simple slideshows!</h1>
</header>
<div class="full-size-slider-demo">
<div class="slideshow" data-slide-name="big" data-slide-src="slideshow/slideshows/big-responsive/big-responsive.json">
</div>
</div>
<div class="information">
<p>
They can be BIG and responsive!
</p>
</div>
</body>
</html>