-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (37 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Lightweight full-screen presentation - CodePen</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css" media="screen" type="text/css" />
</head>
<body>
<div id="slideShow">
<section class="slide">
<h1>This is cube presentation</h1>
<h3>Created by
<a href="http://www.alinabasova.com/" tartget="_blank">Alina Basova</a>
</h3>
<h3>Inspired by
<a href="http://lab.hakim.se/reveal-js/#/" tartget="_blank">Reveal.js</a>
</h3>
</section>
<section class="slide">
<h2>Second slide with text</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
</section>
<section class="slide">
<h1>Third slide with list</h1>
<ul>
<li>List item</li>
<li>List item</li>
<li>List item</li>
<li>List item</li>
</ul>
</section>
</div>
<script src='http://codepen.io/assets/libs/fullpage/jquery.js'></script>
<script src="js/index.js"></script>
</body>
</html>