This repository has been archived by the owner on Feb 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
374 lines (333 loc) · 11.3 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
name="viewport"
/>
<title>➽ Into the Web</title>
<link href="css/reset.css" rel="stylesheet" />
<link href="css/reveal.css" rel="stylesheet" />
<link href="css/theme/into-the-web.css" rel="stylesheet" />
<!-- Theme used for syntax highlighting of code -->
<link href="lib/css/into-the-web.css" rel="stylesheet" />
<!-- Printing and PDF exports -->
<script>
var link = document.createElement("link");
link.rel = "stylesheet";
link.type = "text/css";
link.href = window.location.search.match(/print-pdf/gi)
? "css/print/pdf.css"
: "css/print/paper.css";
document.getElementsByTagName("head")[0].appendChild(link);
</script>
<style>
code > aside {
position: absolute;
width: max-content;
margin: 1em 60%;
transform: translate(-25%, -125%);
text-align: center;
}
.browsers > object {
width: 20%;
margin: 1%;
}
</style>
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<b>Into the web</b>
<footer>
<p>
@ University of Applied Sciences<br /> Upper Austria
</p>
<p>Markus Reichl<br />January 24, 2020</p>
</footer>
</section>
<section data-background-image="images/tiger.jpg">
<h1>Into the web</h1>
<aside class="notes">
Willkommen bei meiner Präsentation: Into the Web.
</aside>
</section>
<section>
<p>The web is about</p>
<h2>Words</h2>
<small>https://justinjackson.ca/words.html</small>
</section>
<section
data-background-video="videos/sharpfives.webm"
data-background-video-muted="true"
>
<b style="font-size: 2em">Gems by Sharp Fives</b>
<aside class="notes">https://sharpfives.itch.io/gems</aside>
</section>
<section
data-background-color="white"
data-background-iframe="https://into-the-web.glitch.me"
data-preload
></section>
<section>
<h2>< HTML /></h2>
<p>
HyperText <strong><u>Markup</u></strong> Language
</p>
<br />
<pre><code data-noescape data-trim>
<!-- Comment --><aside> <b>HTML-Element</b><br />↙</aside>
<tag attribute="value">Content</tag>
</code></pre>
<aside class="notes">
Tim Berners-Lee @CERN 1989
</aside>
</section>
<section class="browsers">
<object data="images/chrome.svg" type="image/svg+xml">
Google Chrome Logo
</object>
<object data="images/firefox.svg" type="image/svg+xml">
Mozilla Firefox Logo
</object>
<object data="images/safari.svg" type="image/svg+xml">
Apple Safari Logo
</object>
<object data="images/edge.svg" type="image/svg+xml">
Microsoft Edge Logo
</object>
</section>
<section>
<pre><code class="hljs html" data-line-numbers data-noescape data-trim>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Into the Web</title>
</head>
<body>
<h1>Here be tigers!</h1>
</body>
</html>
</code></pre>
<pre>→ *.html</pre>
</section>
<section>
<h3><small>Elements 1</small><br />Text</h3>
<pre
class="center fragment"
><code class="hljs html" data-noescape data-trim>
<h1>Heading</h1>
</code></pre>
<pre
class="center fragment"
><code class="hljs html" data-noescape data-trim>
<p>Paragraph</p>
</code></pre>
<pre
class="center fragment"
><code class="hljs html" data-noescape data-trim>
<b><b>bold</b></b>
</code></pre>
<pre
class="center fragment"
><code class="hljs html" data-noescape data-trim>
<i><i>italic</i></i>
</code></pre>
<pre
class="center fragment"
><code class="hljs html" data-noescape data-trim>
<u><u>underlined</u></u>
</code></pre>
<pre
class="center fragment"
><code class="hljs html" data-noescape data-trim>
line<br />
break
</code></pre>
</section>
<section>
<b>Text</b>
<p>
<small>
A paragraph of <b>bold</b>, <i>italic</i> and
<u>underlined</u> text.
</small>
</p>
<pre
class="center"
><code class="hljs html" data-line-numbers data-noescape data-trim>
<h2>Text</h2>
<p>
A paragraph of
<b><b>bold</b></b>,
<i><i>italic</i></i> and
<u><u>underlined</u></u> text.
</p>
</code></pre>
</section>
<section>
<h3><small>Elements 2</small><br />Content</h3>
<pre
class="center fragment"
><code class="hljs html" data-noescape data-trim>
<img alt="Alternative text" src="source.jpg" />
</code></pre>
<pre
class="center fragment"
><code class="hljs html" data-noescape data-trim>
<a href="hyperlink/reference"><u>Anchor</u></a>
</code></pre>
</section>
<section>
<p><b>Content:</b></p>
<img
alt="Hiding tiger"
src="https://source.unsplash.com/7nKv6HMsNEc/800x200"
/>
<small>
Find this image on
<a href="unsplash.com/photos/7nKv6HMsNEc"><u>Unsplash</u></a>
</small>
<pre
class="center"
style="font-size: 0.6em"
><code class="hljs html" data-line-numbers data-noescape data-trim>
<img alt="Hiding tiger"
src="https://source.unsplash.com/7nKv6HMsNEc/800x300" <span class="hljs-tag">/></span>
<p>
Find this image on
<a href="unsplash.com/photos/7nKv6HMsNEc">Unsplash</a>
</p>
</code></pre>
</section>
<section>
<h3>
<small>Elements 3</small><br />
Lists
</h3>
<pre
class="center fragment"
><code class="hljs html" data-noescape data-trim>
<ul> ← <b>Unordered List</b>
<li>List item</li>
<li>List item</li>
</ul>
</code></pre>
<pre
class="center fragment"
><code class="hljs html" data-noescape data-trim>
<ol> ← <b>Ordered List</b>
<li>List item</li>
<li>List item</li>
</ol>
</code></pre>
<aside class="notes">
Tiger population in Hagenberg = 1?
</aside>
</section>
<section>
<p><b>Tiger facts:</b></p>
<small>
<ul>
<li>Tigers are the largest wild cats in the world.</li>
<li>
A tiger's roar can be heard as far as three kilometres away.
</li>
<li>No two tigers have the same pattern of stripes.</li>
</ul>
</small>
<pre
class="center"
style="font-size: 0.6em"
><code class="hljs html" data-line-numbers data-noescape data-trim>
<ul>
<li>Tigers are the largest wild cats in the world.</li>
<li>A tiger's roar can be heard as far
as three kilometers away.</li>
<li>No two tigers have the same pattern of stripes.</li>
</ul>
</code></pre>
</section>
<section>
<p><b>Tiger population by country:</b></p>
<small>
<ol>
<li>India 🇮🇳 2976</li>
<li>Russia 🇷🇺 433</li>
<li>Indonesia 🇮🇩 371</li>
</ol>
</small>
<pre
class="center"
style="font-size: 0.6em"
><code class="hljs html" data-line-numbers data-noescape data-trim>
<ol>
<li>India 🇮🇳 2976</li>
<li>Russia 🇷🇺 433</li>
<li>Indonesia 🇮🇩 371</li>
</ol>
</code></pre>
</section>
<!-- <section
data-background-iframe="https://glitch.com/~into-the-web"
data-background-interactive
>
<aside class="notes">
Quelltext-Hilfe hier.
</aside>
</section> -->
<section>
<object width="50%" data="images/glitch.svg" type="image/svg+xml">
Glitch Logo
</object>
<aside class="notes">
<pre><code>
<h1>Here be tigers!</h1>
<h2>Text</h2>
<p>A paragraph of <b>bold</b>, <i>italic</i> and <u>underlined</u> text.</p>
<h2>Content</h2>
<img
alt="Hiding tiger"
src="https://source.unsplash.com/7nKv6HMsNEc/800x300"
/>
<p>
Find this image on <a href="unsplash.com/photos/7nKv6HMsNEc">Unsplash</a>
</p>
<h2>Lists</h2>
<b>Tiger facts:</b>
<ul>
<li>Tigers are the largest wild cats in the world.</li>
<li>A tiger's roar can be heard as far as 3 kilometres away.</li>
<li>No two tigers have the same pattern of stripes.</li>
</ul>
<b>Tiger population by country:</b>
<ol>
<li>India 🇮🇳 2976</li>
<li>Russia 🇷🇺 433</li>
<li>Indonesia 🇮🇩 371</li>
</ol>
</code></pre>
</aside>
</section>
</div>
</div>
<script src="js/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({
hash: true,
dependencies: [
{ src: "plugin/markdown/marked.js" },
{ src: "plugin/markdown/markdown.js" },
{ src: "plugin/highlight/highlight.js" },
{ src: "plugin/notes/notes.js", async: true }
],
preloadIframes: true
});
</script>
</body>
</html>