-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpresentation-template.html
630 lines (603 loc) Β· 26.1 KB
/
presentation-template.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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<meta name=viewport content="width=device-width, initial-scale=1">
<meta name=robots content="index, follow">
<meta name=description content="A single HTML file for showing a reveal.js presentation locally">
<meta name=apple-mobile-web-app-title content="Presentation">
<meta name=apple-mobile-web-app-capable content=yes>
<meta name=apple-mobile-web-app-status-bar-style content=black-translucent>
<title>[See H1 tag in first slide]</title>
<link rel=icon href=https://center-key.github.io/reveal.js-local/assets/bookmark.png>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/[email protected]/dist/dna-engine.css>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/[email protected]/dist/panel-nav.css>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/[email protected]/dist/reveal.css>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/[email protected]/hljs-enhance.css>
<link rel=stylesheet href=https://cdn.jsdelivr.net/gh/center-key/[email protected]/docs/reveal.js-local.css>
<script defer src=https://cdn.jsdelivr.net/npm/[email protected]/dist/reveal.js></script>
<script defer src=https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/highlight.min.js></script>
<script defer src=https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/languages/http.min.js></script>
<script defer src=https://cdn.jsdelivr.net/npm/[email protected]/dist/dna-engine.min.js></script>
<script defer src=https://cdn.jsdelivr.net/npm/[email protected]/hljs-enhance.js></script>
<script defer src=https://cdn.jsdelivr.net/gh/center-key/[email protected]/docs/reveal.js-local.js></script>
<script src=https://cdn.jsdelivr.net/npm/[email protected]/dist/chart.umd.js></script> <!-- wait for loading -->
<script src=https://cdn.jsdelivr.net/npm/[email protected]/dist/chartjs-plugin-datalabels.min.js></script> <!-- wait for loading -->
<script src=https://cdn.jsdelivr.net/npm/[email protected]/dist/chartjs-plugin-annotation.min.js></script> <!-- wait for loading -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- reveal.js-local v0.3.2 -->
<!-- ====================== -->
<!-- A single HTML file for showing a reveal.js presentation locally. -->
<!-- -->
<!-- View sample "presentation-template.html" online at: -->
<!-- https://center-key.github.io/reveal.js-local -->
<!-- -->
<!-- Project: -->
<!-- https://github.com/center-key/reveal.js-local -->
<!-- -->
<!-- This project uses reveal.js by Hakim El Hattab, see: -->
<!-- https://github.com/hakimel/reveal.js -->
<!-- -->
<!-- Extras: -->
<!-- * References a CDN copy of reveal.js so the presentation doesn't start off over 1 MB -->
<!-- * Adds some sample slides to show formatting -->
<!-- * Toggles hidden slides by pressing the backtick (`) key -->
<!-- * Includes hover effects for tables and source code to help speaker point to items -->
<!-- * Trims code whitespace to render properly even when aligned with surrounding HTML -->
<!-- -->
<!-- To get started: -->
<!-- Save "docs/presentation-template.html" locally and then view and edit it locally. -->
<!-- -->
<!-- MIT License -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- Presentation Settings -->
<script id=presentation-settings>
const themes = { 1: 'black', 2: 'blood', 3: 'dracula', 4: 'league', 5: 'night', 6: 'simple', 7: 'sky', 8: 'solarized', 9: 'white' };
const selectedTheme = 5; //set to desired image from above list, see: https://revealjs.com/themes
const baseFontSizePercent = 70;
const backgroundTypeToUse = { color: false, gradient: false, image: true }; //set just one type of background to true
const backgroundColor = 'teal';
const backgroundGradient = 'linear-gradient(to right, darkslategray, teal 15%, teal 85%, darkslategray)';
const backgroundImages = {
1: 'https://center-key.github.io/reveal.js-local/assets/nasa-pluto-crescent.jpg',
2: 'https://center-key.github.io/reveal.js-local/assets/nasa-pluto-dark.jpg',
3: 'https://center-key.github.io/reveal.js-local/assets/nasa-reflection-nebula.jpg',
4: 'https://center-key.github.io/reveal.js-local/assets/nasa-space-nebula.jpg',
5: 'https://center-key.github.io/reveal.js-local/assets/nasa-wise-orion.jpg',
6: 'https://center-key.github.io/reveal.js-local/assets/nasa-wise-red-galaxy.jpg',
};
const selectedBackgroundImage = 1; //set to desired image from above list
const syntaxHighlightingTheme = 'Atom One Dark'; //see list of themes at: https://highlightjs.org/static/demo
const autoAdvance = false;
const autoAdvanceSeconds = 10;
Chart.register(ChartDataLabels);
Chart.register(globalThis['chartjs-plugin-annotation']);
Chart.defaults.font.size = 20;
Chart.defaults.color = 'white';
Chart.defaults.plugins.datalabels.display = false;
</script>
<!-- Custom JavaScript -->
<script id=presentation-custom-setup>
const presentationCustomSetup = () => {
console.log('Presentation is ready.');
// Put custom code here.
};
</script>
<!-- Custom Style -->
<style id=presentation-custom-css>
/* Put custom styling here. */
</style>
</head><body><div class=reveal><div class=slides>
<!-- =========================================================================================== -->
<!-- === Start of Slides === -->
<!-- === Note: Each <section> tag represents a slide of the presentation. === -->
<!-- =========================================================================================== -->
<!-- Slide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<section>
<h1 id=presentation-title>The Presentation</h1>
<h2>Show your code</h2>
<p>
Your Name<br>
<span class=display-address data-name=info data-domain=example.com></span>
</p>
</section>
<!-- Slide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<section>
<br>
<h2>Content</h2>
<p>
Press the <b>"F"</b> key to enter <b>F</b>ull screen mode.
</p>
<p>
And <b>"Esc"</b> to exit.
</p>
<p>
Press <b>"?"</b> for help.
</p>
<br><hr>
<div class=external-site>
<p>
Get latest template:<br>
<a href=https://github.com/center-key/reveal.js-local>reveal.js-local</a>
</p>
<p>
Main documentation:<br>
<a href=https://revealjs.com>reveal.js</a>
</p>
<p>
<a rel=license href=http://creativecommons.org/publicdomain/zero/1.0
style="border-bottom: none;" title="Creative Commons (CC0 1.0)">
<img src=https://mirrors.creativecommons.org/presskit/icons/cc.svg style="height: 30px;" alt=cc01.0>
<img src=https://mirrors.creativecommons.org/presskit/icons/zero.svg style="height: 30px;" alt=cc01.0>
</a>
</p>
</div>
</section>
<!-- Slide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<section>
<h2>Header 2</h2>
<h3>Header 3</h3>
<h4>Header 4</h4>
<p>
This paragraph is for authentic pug Thundercats, lomo distillery
PBR literally kitsch you probably haven't seen.
</p>
<figure>
<figcaption>HTML for this Slide</figcaption>
<pre><code class=language-html>
<!-- Slide -->
<section>
<h2>Header 2</h2>
<h3>Header 3</h3>
<h4>Header 4</h4>
<p>
This paragraph is for authentic pug Thundercats, lomo
distillery PBR literally kitsch you probably haven't seen.
</p>
</section>
</code></pre>
</figure>
</section>
<!-- Slide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<section>
<h2>Building a Bullet List</h2>
<p class=fragment><code><b>class=fragment</b></code></p>
<ul>
<li class=fragment>HTML5</li>
<li class=fragment>CSS3</li>
<li class=fragment>JavaScript</li>
</ul>
<br><br>
<figure>
<pre><code class=language-html>
<!-- Slide -->
<section>
<h2>Building a Bullet List</h2>
<p class=fragment><code><b>class=fragment</b></code></p>
<ul>
<li class=fragment>HTML5</li>
<li class=fragment>CSS3</li>
<li class=fragment>JavaScript</li>
</ul>
</section>
</code></pre>
</figure>
</section>
<!-- Slide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<section>
<h2>Data Table</h2>
<table>
<thead><tr><th>Type</th><th>Example</th></tr></thead>
<tbody>
<tr>
<td>Boolean</td>
<td><code>true</code></td>
</tr>
<tr>
<td>String</td>
<td><code>'Hover over me!'</code></td>
</tr>
<tr>
<td>π</td>
<td><code>3.14159265</code></td>
</tr>
</tbody>
</table>
<figure>
<pre><code class=language-html>
<!-- Slide -->
<section>
<h2>Data Table</h2>
<table>
<thead><tr><th>Type</th><th>Example</th></tr></thead>
<tbody>
<tr><td>Boolean</td><td><code>true</code></td></tr>
<tr><td>String</td> <td><code>'Hover over me!'</code></td></tr>
<tr><td>&pi;</td> <td><code>3.14159265</code></td></tr>
</tbody>
</table>
</section>
</code></pre>
</figure>
</section>
<!-- Slide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<section>
<h2>HTML</h2>
<p>
To display HTML code,
<a href=https://www.convertstring.com/EncodeDecode/HtmlEncode>encode</a>
the HTML and place into:<br>
<b><pre><code class=language-html></b>
</p>
<nav class=dna-menu data-style=flat-tabs>
<span>Encoded HTML</span>
<span>Rendered in Presentation</span>
</nav>
<div class=dna-panels>
<div>
<pre><code class=language-html>
<p>My website:</p>
<pre><code class=language-html>
&lt;!doctype html&gt;
&lt;html lang=en&gt;
&lt;head&gt;
&lt;meta charset=utf-8&gt;
&lt;title&gt;Example Website&lt;/title&gt;
&lt;/html&gt;
&lt;body&gt;
&lt;h1&gt;Example Website&lt;/h1&gt;
&lt;/body&gt;
&lt;/html&gt;
</code></pre>
</code></pre>
</div>
<div>
<p>My website:</p>
<pre><code class=language-html>
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<title>Example Website</title>
</html>
<body>
<h1>Example Website</h1>
</body>
</html>
</code></pre>
</div>
</div>
</section>
<!-- Slide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<section>
<h2>JavaScript</h2>
<p>
To display JS with syntax highlighting, place the code within:<br>
<b><pre><code class=language-javascript></b>
</p>
<div class=down-arrow></div>
<figure>
<pre><code class=language-javascript>
const fibLookup = [1, 1]; //memoization cache
const fibonacci = (n) => {
while (fibLookup.length < n)
fibLookup.push(fibLookup.at(-1) + fibLookup.at(-2));
return fibLookup[n - 1];
};
console.log('Fibonacci of 100 is:', fibonacci(100));
</code></pre>
</figure>
<aside class=notes>
<p><code>Fibonacci of 100 is: 354224848179262000000</code></p>
</aside>
</section>
<!-- Slide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<section>
<h2>Down Arrow & Unicode Emojis</h2>
<div class=down-arrow></div>
<p><em>π π₯ π π π¦ π π π¦</em></p>
<figure>
<pre><code class=language-html>
<!-- Slide -->
<section>
<h2>Down Arrow &amp; Unicode Emojis</h2>
<div class=down-arrow></div>
<p>
<em>π π₯ π π π¦ π π π¦</em>
</p>
</section>
</code></pre>
</figure>
</section>
<!-- Slide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<section>
<h2>Images</h2>
<img data-width=20%
src=https://center-key.github.io/reveal.js-local/assets/js-logo.png alt=logo>
<p>
Create an <b><code>assets</code></b> folder for your local image files,<br>
and use the <b><code>data-width</code></b> attribute to adjust the image size.
</p>
<figure>
<pre><code class=language-html>
<!-- Slide -->
<section>
<h2>Images</h2>
<img data-width=20% src=assets/js-logo.png alt=logo>
<p>Create an <b><code>assets</code></b> folder for your local...</p>
</section>
</code></pre>
</figure>
</section>
<!-- Slide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<section>
<h2>Google Drawings</h2>
<img class=full alt=diagram data-width=80%
src="https://docs.google.com/drawings/d/e/2PACX-1vRoq91lrZcm51whaXE6ot3e4tnOstxsD4XcMd-L-WkqZEGBd28g0rPeNpwmZIS16mUjAxJvRcMwA4-m/pub?w=1971&h=641">
<p>
Choose <b>File ⇒ Share ⇒
Publish to the web ⇒ Link...</b>
</p>
<figure>
<pre><code class=language-html>
<!-- Slide -->
<section>
<h2>Google Drawings</h2>
<img class=full alt=diagram
src="https://docs.google.com/drawings/d/e/.../pub?w=1971&h=641">
Choose <b>File &rArr; Share &rArr;
Publish to the web &rArr; Link...</b>
</section>
</code></pre>
</figure>
</section>
<section> <!-- Start: Slide Group -->
<h2>Chart.js Slides</h2>
<!-- Slide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<section>
<h2>Chart.js</h2>
<figure>
<figcaption>Highest Mountain Peaks by U.S. State</figcaption>
<canvas id=peaks-chart></canvas>
</figure>
<script>
const peaks = [
{ name: 'Denali', state: 'Alaska', elevation: 6190 },
{ name: 'Mount Whitney', state: 'California', elevation: 4421 },
{ name: 'Mount Elbert', state: 'Colorado', elevation: 4401 },
{ name: 'Mount Rainier', state: 'Washington', elevation: 4394 },
{ name: 'Gannett Peak', state: 'Wyoming', elevation: 4209 },
{ name: 'Mauna Kea', state: 'Hawaii', elevation: 4207 },
];
const states = peaks.map(peak => peak.state);
const elevations = peaks.map(peak => peak.elevation);
const peakLabel = (value, context) =>
`${peaks[context.dataIndex].name}\n${value.toLocaleString()} m`;
const peaksDataset = {
label: 'Elevation (meters)',
data: elevations,
backgroundColor: 'teal',
datalabels: {
display: true,
formatter: peakLabel,
color: 'goldenrod',
anchor: 'end',
align: 'top',
textAlign: 'center',
},
};
const peaksChart = {
type: 'bar',
data: { labels: states, datasets: [peaksDataset] },
options: {
scales: {
x: { ticks: { font: { size: 20 } } },
y: { ticks: { font: { size: 25 } }, beginAtZero: true },
},
},
};
new Chart(document.getElementById('peaks-chart'), peaksChart);
</script>
</section>
<!-- Slide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<section>
<h2>Chart.js Code</h2>
<figure>
<pre><code class=language-html style="font-size: 0.7rem;">
<!-- Slide -->
<section>
<h2>Chart.js</h2>
<figure>
<figcaption>Highest Mountain Peaks by U.S. State</figcaption>
<canvas id=peaks-chart></canvas>
</figure>
<script>
const peaks = [
{ name: 'Denali', state: 'Alaska', elevation: 6190 },
{ name: 'Mount Whitney', state: 'California', elevation: 4421 },
... <!--
{ name: 'Mount Elbert', state: 'Colorado', elevation: 4401 },
{ name: 'Mount Rainier', state: 'Washington', elevation: 4394 },
{ name: 'Gannett Peak', state: 'Wyoming', elevation: 4209 },
{ name: 'Mauna Kea', state: 'Hawaii', elevation: 4207 },
-->
];
const states = peaks.map(peak => peak.state);
const elevations = peaks.map(peak => peak.elevation);
const peakLabel = (value, context) =>
`${peaks[context.dataIndex].name}\n${value.toLocaleString()} m`;
const peaksDataset = {
label: 'Elevation (meters)',
data: elevations,
backgroundColor: 'teal',
datalabels: { display: true, formatter: peakLabel, color: 'goldenrod', ... }, <!--
anchor: 'end',
align: 'top',
textAlign: 'center',
},
-->
};
const peaksChart = {
type: 'bar',
data: { labels: states, datasets: [peaksDataset] },
options: {
scales: {
x: { ticks: { font: { size: 20 } } },
y: { ticks: { font: { size: 25 } }, beginAtZero: true },
},
},
};
new Chart(document.getElementById('peaks-chart'), peaksChart);
</script>
</section>
</code></pre>
</figure>
</section>
</section> <!-- End: Slide Group -->
<!-- Slide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<section>
<h2>Panels</h2>
<nav class=dna-menu data-style=flat-tabs>
<span>Turtle</span>
<span>Bison</span>
<span>Owl</span>
<span>Llama</span>
<span>Elephant</span>
<span>Custom</span>
</nav>
<div class=dna-panels>
<div>
<p><em><em>π’</em></em></p>
</div>
<div>
<p><em><em>π¦¬</em></em></p>
</div>
<div>
<p><em><em>π¦</em></em></p>
</div>
<div>
<p><em><em>π¦</em></em></p>
</div>
<div>
<p><em><em>π</em></em></p>
</div>
<div>
<textarea style="font-size: 5em;" spellcheck=false>
π’ π¦ π
</textarea>
</div>
</div>
</section>
<!-- Slide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<section>
<h2>Group of Vertical Slides</h2>
<section>
<h2>Vertical Slides</h2>
<p>Wrap slides in another <code><section></code> tag.</p>
<figure>
<pre><code class=language-html>
<!-- Vertical Slides -->
<section>
<!-- Slide -->
<section>
<h2>Top Slide</h2>
<p>This slide displays like normal.</p>
</section>
<!-- Slide -->
<section>
<h2>Bottom Slide</h2>
<p>Hit the down arrow key to show this slide.</p>
</section>
</section>
</code></pre>
</figure>
</section>
<section>
<h2>Australia</h2>
<p>Is Australia the world's smallest continent</p>
<p>or</p>
<p>the world's largest island?</p>
<img data-width=35%
src=https://upload.wikimedia.org/wikipedia/commons/3/3d/AUS_orthographic.svg alt=map>
</section>
<section>
<h2>Yes</h2>
</section>
</section>
<!-- Slide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<section>
<h2>Speaker Notes</h2>
<p>
Press the <b><code>Enter</code></b> key to reveal the slide's speaker notes.
</p>
<figure>
<pre><code class=language-html>
<!-- Slide -->
<section>
<h2>Speaker Notes</h2>
<p>Press the Enter key to reveal the slide's speaker notes.</p>
<aside class=notes>
<p>Important extra information in paragraph #1.</p>
<p>Important extra information in paragraph #2.</p>
<p>Important extra information in paragraph #3.</p>
</aside>
</section>
</code></pre>
</figure>
<aside class=notes>
<p>Important extra information in paragraph #1.</p>
<p>Important extra information in paragraph #2.</p>
<p>Important extra information in paragraph #3.</p>
</aside>
</section>
<!-- Slide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<section>
<h2>Hidden Slides</h2>
<p>
Press the backtick (<b><code>`</code></b>) key to reveal
additional sample slides that are hidden using:
</p>
<p>
<b><code><section data-visibility=hidden></code></b>
</p>
<aside class=notes>
<pre><code class=language-html>
<!-- Slide -->
<section>
<h2>Hidden Slides</h2>
<p>
Press the backtick (<b><code>`</code></b>) key to reveal
additional sample slides that are hidden using:
</p>
<p>
<b><code>&lt;section data-visibility=hidden&gt;</code></b>
</p>
<aside class=notes>
<pre><code class=language-html>
&lt;!-- Slide --&gt;
</code></pre>
</aside>
</section>
</code></pre>
</aside>
</section>
<!-- Slide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<section data-visibility=hidden>
<h2>Framed</h2>
<img src=https://i.chzbgr.com/full/5248955648/hA52D8A65 class=framed data-width=45% alt=cat>
<figure>
<pre><code class=language-html>
<!-- Slide -->
<section data-visibility=hidden>
<h2>Framed</h2>
<img src=https://i.chzbgr.com/full/5248955648/hA52D8A65
class=framed data-width=45% alt=cat>
</section>
</code></pre>
</figure>
</section>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- End of Slides -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
</div></div></body></html>