-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·75 lines (58 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="rsl.css" />
<script src="rsl.js"></script>
</head>
<body>
<section class="rsl-slide">
<h1>Rassal</h1>
</section>
<section class="rsl-slide">
<h1>A tool made for simple presentations</h1>
</section>
<section class="rsl-slide">
<h1>LARGE HEADING</h1>
<h5>SMALL ONE</h5>
</section>
<section class="rsl-slide">
<h1>It uses simple HTML elements, like:</h1>
<ul>
<li>Headings</li>
<li>Unordered lists</li>
<li>Ordered lists</li>
<li>Paragraphs</li>
</ul>
</section>
<section class="rsl-slide">
<h1>Заглавие на кирилица</h1>
<h5>Малко заглавие</h5>
</section>
<section class="rsl-slide">
<h1>An ordered list:</h1>
<ol>
<li>Everything</li>
<li>is</li>
<li>auto-sized and auto-positioned</li>
</ol>
</section>
<section class="rsl-slide">
<h1>And here is a heading</h1>
<p>Followed by a couple of</p>
<p>short paragraphs</p>
</section>
<section class="rsl-slide">
<h1>A code sample</h1>
<pre><code class="javascript">
var obj = {
fullName: "John K. Paul",
alertName: function(greeting) {
alert(greeting + " " + this.fullName);
}
};
obj.alertName("Hey"); // Hey John K. Paul
</code></pre>
</section>
</body>
</html>