HTML Preparation code:
x
 
1
<!doctype html>
2
<html lang="en">
3
  <head>
4
    <meta charset="utf-8">
5
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
    <title>HTML5 Test Page</title>
7
  </head>
8
  <body>
9
    <div id="top" class="page" role="document">
10
      <header role="banner">
11
        <h1>HTML5 Test Page</h1>
12
        <p>This is a test page filled with common HTML elements to be used to provide visual feedback whilst building CSS systems and frameworks.</p>
13
      </header>
14
      <nav role="navigation">
15
        <ul>
16
          <li>
17
            <a href="#text">Text</a>
18
            <ul>
19
              <li><a href="#text__headings">Headings</a></li>
20
              <li><a href="#text__paragraphs">Paragraphs</a></li>
21
              <li><a href="#text__blockquotes">Blockquotes</a></li>
22
              <li><a href="#text__lists">Lists</a></li>
23
              <li><a href="#text__hr">Horizontal rules</a></li>
24
              <li><a href="#text__tables">Tabular data</a></li>
25
              <li><a href="#text__code">Code</a></li>
26
              <li><a href="#text__inline">Inline elements</a></li>
27
              <li><a href="#text__comments">HTML Comments</a></li>
28
            </ul>
29
          </li>
30
          <li>
31
            <a href="#embedded">Embedded content</a>
32
            <ul>
33
              <li><a href="#embedded__images">Images</a></li>
34
              <li><a href="#embedded__audio">Audio</a></li>
35
              <li><a href="#embedded__video">Video</a></li>
36
              <li><a href="#embedded__canvas">Canvas</a></li>
37
              <li><a href="#embedded__meter">Meter</a></li>
38
              <li><a href="#embedded__progress">Progress</a></li>
39
              <li><a href="#embedded__svg">Inline SVG</a></li>
40
              <li><a href="#embedded__iframe">IFrames</a></li>
41
            </ul>
42
          </li>
43
          <li>
44
            <a href="#forms">Form elements</a>
45
            <ul>
46
              <li><a href="#forms__input">Input fields</a></li>
47
              <li><a href="#forms__select">Select menus</a></li>
48
              <li><a href="#forms__checkbox">Checkboxes</a></li>
49
              <li><a href="#forms__radio">Radio buttons</a></li>
50
              <li><a href="#forms__textareas">Textareas</a></li>
51
              <li><a href="#forms__html5">HTML5 inputs</a></li>
52
              <li><a href="#forms__action">Action buttons</a></li>
53
            </ul>
54
          </li>
55
        </ul>
56
      </nav>
57
      <main role="main">
58
        <section id="text">
59
          <header><h1>Text</h1></header>
60
          <article id="text__headings">
61
            <header>
62
              <h1>Headings</h1>
63
            </header>
64
            <div>
65
              <h1>Heading 1</h1>
66
              <h2>Heading 2</h2>
67
              <h3>Heading 3</h3>
68
              <h4>Heading 4</h4>
69
              <h5>Heading 5</h5>
70
              <h6>Heading 6</h6>
71
            </div>
72
            <footer><p><a href="#top">[Top]</a></p></footer>
73
          </article>
74
          <article id="text__paragraphs">
75
            <header><h1>Paragraphs</h1></header>
76
            <div>
77
              <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
78
            </div>
79
            <footer><p><a href="#top">[Top]</a></p></footer>
80
          </article>
81
          <article id="text__blockquotes">
82
            <header><h1>Blockquotes</h1></header>
83
            <div>
84
              <blockquote>
85
                <p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
86
                <p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
87
                <cite><a href="#!">Said no one, ever.</a></cite>
88
              </blockquote>
89
            </div>
90
            <footer><p><a href="#top">[Top]</a></p></footer>
91
          </article>
92
          <article id="text__lists">
93
            <header><h1>Lists</h1></header>
94
            <div>
95
              <h3>Definition list</h3>
96
              <dl>
97
                <dt>Definition List Title</dt>
98
                <dd>This is a definition list division.</dd>
99
              </dl>
100
              <h3>Ordered List</h3>
101
              <ol>
102
                <li>List Item 1</li>
103
                <li>List Item 2</li>
104
                <li>List Item 3</li>
105
              </ol>
106
              <h3>Unordered List</h3>
107
              <ul>
108
                <li>List Item 1</li>
109
                <li>List Item 2</li>
110
                <li>List Item 3</li>
111
              </ul>
112
            </div>
113
            <footer><p><a href="#top">[Top]</a></p></footer>
114
          </article>
115
          <article id="text__hr">
116
            <header><h1>Horizontal rules</h1></header>
117
            <div>
118
              <hr>
119
            </div>
120
            <footer><p><a href="#top">[Top]</a></p></footer>
121
          </article>
122
          <article id="text__tables">
123
            <header><h1>Tabular data</h1></header>
124
            <table>
125
              <caption>Table Caption</caption>
126
              <thead>
127
                <tr>
128
                  <th>Table Heading 1</th>
129
                  <th>Table Heading 2</th>
130
                  <th>Table Heading 3</th>
131
                  <th>Table Heading 4</th>
132
                  <th>Table Heading 5</th>
133
                </tr>
134
              </thead>
135
              <tfoot>
136
                <tr>
137
                  <th>Table Footer 1</th>
138
                  <th>Table Footer 2</th>
139
                  <th>Table Footer 3</th>
140
                  <th>Table Footer 4</th>
141
                  <th>Table Footer 5</th>
142
                </tr>
143
              </tfoot>
144
              <tbody>
145
                <tr>
146
                  <td>Table Cell 1</td>
147
                  <td>Table Cell 2</td>
148
                  <td>Table Cell 3</td>
149
                  <td>Table Cell 4</td>
150
                  <td>Table Cell 5</td>
151
                </tr>
152
                <tr>
153
                  <td>Table Cell 1</td>
154
                  <td>Table Cell 2</td>
155
                  <td>Table Cell 3</td>
156
                  <td>Table Cell 4</td>
157
                  <td>Table Cell 5</td>
158
                </tr>
159
                <tr>
160
                  <td>Table Cell 1</td>
161
                  <td>Table Cell 2</td>
162
                  <td>Table Cell 3</td>
163
                  <td>Table Cell 4</td>
164
                  <td>Table Cell 5</td>
165
                </tr>
166
                <tr>
167
                  <td>Table Cell 1</td>
168
                  <td>Table Cell 2</td>
169
                  <td>Table Cell 3</td>
170
                  <td>Table Cell 4</td>
171
                  <td>Table Cell 5</td>
172
                </tr>
173
              </tbody>
174
            </table>
175
            <footer><p><a href="#top">[Top]</a></p></footer>
176
          </article>
177
          <article id="text__code">
178
            <header><h1>Code</h1></header>
179
            <div>
180
              <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
181
              <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
182
              <p><strong>Sample output:</strong> <samp>This is sample output from a computer program.</samp></p>
183
              <h2>Pre-formatted text</h2>
184
              <pre>P R E F O R M A T T E D T E X T
185
  ! " # $ % &amp; ' ( ) * + , - . /
186
  0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ?
187
  @ A B C D E F G H I J K L M N O
188
  P Q R S T U V W X Y Z [ \ ] ^ _
189
  ` a b c d e f g h i j k l m n o
190
  p q r s t u v w x y z { | } ~ </pre>
191
            </div>
192
            <footer><p><a href="#top">[Top]</a></p></footer>
193
          </article>
194
          <article id="text__inline">
195
            <header><h1>Inline elements</h1></header>
196
            <div>
197
              <p><a href="#!">This is a text link</a>.</p>
198
              <p><strong>Strong is used to indicate strong importance.</strong></p>
199
              <p><em>This text has added emphasis.</em></p>
200
              <p>The <b>b element</b> is stylistically different text from normal text, without any special importance.</p>
201
              <p>The <i>i element</i> is text that is offset from the normal text.</p>
202
              <p>The <u>u element</u> is text with an unarticulated, though explicitly rendered, non-textual annotation.</p>
203
              <p><del>This text is deleted</del> and <ins>This text is inserted</ins>.</p>
204
              <p><s>This text has a strikethrough</s>.</p>
205
              <p>Superscript<sup>®</sup>.</p>
206
              <p>Subscript for things like H<sub>2</sub>O.</p>
207
              <p><small>This small text is small for for fine print, etc.</small></p>
208
              <p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
209
              <p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline quotation.</q></p>
210
              <p><cite>This is a citation.</cite></p>
211
              <p>The <dfn>dfn element</dfn> indicates a definition.</p>
212
              <p>The <mark>mark element</mark> indicates a highlight.</p>
213
              <p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
214
              <p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
215
            </div>
216
            <footer><p><a href="#top">[Top]</a></p></footer>
217
          </article>
218
          <article id="text__comments">
219
            <header><h1>HTML Comments</h1></header>
220
            <div>
221
              <p>There is comment here: <!--This comment should not be displayed--></p>
222
              <p>There is a comment spanning multiple tags and lines below here.</p>
223
              <!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
224
              <p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
225
              <p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
226
            </div>
227
            <footer><p><a href="#top">[Top]</a></p></footer>
228
          </article>
229
        </section>
230
        <section id="embedded">
231
          <header><h1>Embedded content</h1></header>
232
          <article id="embedded__images">
233
            <header><h2>Images</h2></header>
234
            <div>
235
              <h3>No <code>&lt;figure&gt;</code> element</h3>
236
              <p><img src="http://placekitten.com/480/480" alt="Image alt text"></p>
237
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, no <code>&lt;figcaption&gt;</code></h3>
238
              <figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure>
239
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaption&gt;</code></h3>
240
              <figure>
241
                <img src="http://placekitten.com/420/420" alt="Image alt text">
242
                <figcaption>Here is a caption for this image.</figcaption>
243
              </figure>
244
            </div>
245
            <footer><p><a href="#top">[Top]</a></p></footer>
246
          </article>
247
          <article id="embedded__audio">
248
            <header><h2>Audio</h2></header>
249
            <div><audio controls="">audio</audio></div>
250
            <footer><p><a href="#top">[Top]</a></p></footer>
251
          </article>
252
          <article id="embedded__video">
253
            <header><h2>Video</h2></header>
254
            <div><video controls="">video</video></div>
255
            <footer><p><a href="#top">[Top]</a></p></footer>
256
          </article>
257
          <article id="embedded__canvas">
258
            <header><h2>Canvas</h2></header>
259
            <div><canvas>canvas</canvas></div>
260
            <footer><p><a href="#top">[Top]</a></p></footer>
261
          </article>
262
          <article id="embedded__meter">
263
            <header><h2>Meter</h2></header>
264
            <div><meter value="2" min="0" max="10">2 out of 10</meter></div>
265
            <footer><p><a href="#top">[Top]</a></p></footer>
266
          </article>
267
          <article id="embedded__progress">
268
            <header><h2>Progress</h2></header>
269
            <div><progress>progress</progress></div>
270
            <footer><p><a href="#top">[Top]</a></p></footer>
271
          </article>
272
          <article id="embedded__svg">
273
            <header><h2>Inline SVG</h2></header>
274
            <div><svg width="100px" height="100px"><circle cx="100" cy="100" r="100" fill="#1fa3ec"></circle></svg></div>
275
            <footer><p><a href="#top">[Top]</a></p></footer>
276
          </article>
277
          <article id="embedded__iframe">
278
            <header><h2>IFrame</h2></header>
279
            <div><iframe src="index.html" height="300"></iframe></div>
280
            <footer><p><a href="#top">[Top]</a></p></footer>
281
          </article>
282
        </section>
283
        <section id="text">
284
          <header><h1>Text</h1></header>
285
          <article id="text__headings">
286
            <header>
287
              <h1>Headings</h1>
288
            </header>
289
            <div>
290
              <h1>Heading 1</h1>
291
              <h2>Heading 2</h2>
292
              <h3>Heading 3</h3>
293
              <h4>Heading 4</h4>
294
              <h5>Heading 5</h5>
295
              <h6>Heading 6</h6>
296
            </div>
297
            <footer><p><a href="#top">[Top]</a></p></footer>
298
          </article>
299
          <article id="text__paragraphs">
300
            <header><h1>Paragraphs</h1></header>
301
            <div>
302
              <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
303
            </div>
304
            <footer><p><a href="#top">[Top]</a></p></footer>
305
          </article>
306
          <article id="text__blockquotes">
307
            <header><h1>Blockquotes</h1></header>
308
            <div>
309
              <blockquote>
310
                <p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
311
                <p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
312
                <cite><a href="#!">Said no one, ever.</a></cite>
313
              </blockquote>
314
            </div>
315
            <footer><p><a href="#top">[Top]</a></p></footer>
316
          </article>
317
          <article id="text__lists">
318
            <header><h1>Lists</h1></header>
319
            <div>
320
              <h3>Definition list</h3>
321
              <dl>
322
                <dt>Definition List Title</dt>
323
                <dd>This is a definition list division.</dd>
324
              </dl>
325
              <h3>Ordered List</h3>
326
              <ol>
327
                <li>List Item 1</li>
328
                <li>List Item 2</li>
329
                <li>List Item 3</li>
330
              </ol>
331
              <h3>Unordered List</h3>
332
              <ul>
333
                <li>List Item 1</li>
334
                <li>List Item 2</li>
335
                <li>List Item 3</li>
336
              </ul>
337
            </div>
338
            <footer><p><a href="#top">[Top]</a></p></footer>
339
          </article>
340
          <article id="text__hr">
341
            <header><h1>Horizontal rules</h1></header>
342
            <div>
343
              <hr>
344
            </div>
345
            <footer><p><a href="#top">[Top]</a></p></footer>
346
          </article>
347
          <article id="text__tables">
348
            <header><h1>Tabular data</h1></header>
349
            <table>
350
              <caption>Table Caption</caption>
351
              <thead>
352
                <tr>
353
                  <th>Table Heading 1</th>
354
                  <th>Table Heading 2</th>
355
                  <th>Table Heading 3</th>
356
                  <th>Table Heading 4</th>
357
                  <th>Table Heading 5</th>
358
                </tr>
359
              </thead>
360
              <tfoot>
361
                <tr>
362
                  <th>Table Footer 1</th>
363
                  <th>Table Footer 2</th>
364
                  <th>Table Footer 3</th>
365
                  <th>Table Footer 4</th>
366
                  <th>Table Footer 5</th>
367
                </tr>
368
              </tfoot>
369
              <tbody>
370
                <tr>
371
                  <td>Table Cell 1</td>
372
                  <td>Table Cell 2</td>
373
                  <td>Table Cell 3</td>
374
                  <td>Table Cell 4</td>
375
                  <td>Table Cell 5</td>
376
                </tr>
377
                <tr>
378
                  <td>Table Cell 1</td>
379
                  <td>Table Cell 2</td>
380
                  <td>Table Cell 3</td>
381
                  <td>Table Cell 4</td>
382
                  <td>Table Cell 5</td>
383
                </tr>
384
                <tr>
385
                  <td>Table Cell 1</td>
386
                  <td>Table Cell 2</td>
387
                  <td>Table Cell 3</td>
388
                  <td>Table Cell 4</td>
389
                  <td>Table Cell 5</td>
390
                </tr>
391
                <tr>
392
                  <td>Table Cell 1</td>
393
                  <td>Table Cell 2</td>
394
                  <td>Table Cell 3</td>
395
                  <td>Table Cell 4</td>
396
                  <td>Table Cell 5</td>
397
                </tr>
398
              </tbody>
399
            </table>
400
            <footer><p><a href="#top">[Top]</a></p></footer>
401
          </article>
402
          <article id="text__code">
403
            <header><h1>Code</h1></header>
404
            <div>
405
              <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
406
              <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
407
              <p><strong>Sample output:</strong> <samp>This is sample output from a computer program.</samp></p>
408
              <h2>Pre-formatted text</h2>
409
              <pre>P R E F O R M A T T E D T E X T
410
  ! " # $ % &amp; ' ( ) * + , - . /
411
  0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ?
412
  @ A B C D E F G H I J K L M N O
413
  P Q R S T U V W X Y Z [ \ ] ^ _
414
  ` a b c d e f g h i j k l m n o
415
  p q r s t u v w x y z { | } ~ </pre>
416
            </div>
417
            <footer><p><a href="#top">[Top]</a></p></footer>
418
          </article>
419
          <article id="text__inline">
420
            <header><h1>Inline elements</h1></header>
421
            <div>
422
              <p><a href="#!">This is a text link</a>.</p>
423
              <p><strong>Strong is used to indicate strong importance.</strong></p>
424
              <p><em>This text has added emphasis.</em></p>
425
              <p>The <b>b element</b> is stylistically different text from normal text, without any special importance.</p>
426
              <p>The <i>i element</i> is text that is offset from the normal text.</p>
427
              <p>The <u>u element</u> is text with an unarticulated, though explicitly rendered, non-textual annotation.</p>
428
              <p><del>This text is deleted</del> and <ins>This text is inserted</ins>.</p>
429
              <p><s>This text has a strikethrough</s>.</p>
430
              <p>Superscript<sup>®</sup>.</p>
431
              <p>Subscript for things like H<sub>2</sub>O.</p>
432
              <p><small>This small text is small for for fine print, etc.</small></p>
433
              <p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
434
              <p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline quotation.</q></p>
435
              <p><cite>This is a citation.</cite></p>
436
              <p>The <dfn>dfn element</dfn> indicates a definition.</p>
437
              <p>The <mark>mark element</mark> indicates a highlight.</p>
438
              <p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
439
              <p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
440
            </div>
441
            <footer><p><a href="#top">[Top]</a></p></footer>
442
          </article>
443
          <article id="text__comments">
444
            <header><h1>HTML Comments</h1></header>
445
            <div>
446
              <p>There is comment here: <!--This comment should not be displayed--></p>
447
              <p>There is a comment spanning multiple tags and lines below here.</p>
448
              <!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
449
              <p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
450
              <p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
451
            </div>
452
            <footer><p><a href="#top">[Top]</a></p></footer>
453
          </article>
454
        </section>
455
        <section id="embedded">
456
          <header><h1>Embedded content</h1></header>
457
          <article id="embedded__images">
458
            <header><h2>Images</h2></header>
459
            <div>
460
              <h3>No <code>&lt;figure&gt;</code> element</h3>
461
              <p><img src="http://placekitten.com/480/480" alt="Image alt text"></p>
462
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, no <code>&lt;figcaption&gt;</code></h3>
463
              <figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure>
464
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaption&gt;</code></h3>
465
              <figure>
466
                <img src="http://placekitten.com/420/420" alt="Image alt text">
467
                <figcaption>Here is a caption for this image.</figcaption>
468
              </figure>
469
            </div>
470
            <footer><p><a href="#top">[Top]</a></p></footer>
471
          </article>
472
          <article id="embedded__audio">
473
            <header><h2>Audio</h2></header>
474
            <div><audio controls="">audio</audio></div>
475
            <footer><p><a href="#top">[Top]</a></p></footer>
476
          </article>
477
          <article id="embedded__video">
478
            <header><h2>Video</h2></header>
479
            <div><video controls="">video</video></div>
480
            <footer><p><a href="#top">[Top]</a></p></footer>
481
          </article>
482
          <article id="embedded__canvas">
483
            <header><h2>Canvas</h2></header>
484
            <div><canvas>canvas</canvas></div>
485
            <footer><p><a href="#top">[Top]</a></p></footer>
486
          </article>
487
          <article id="embedded__meter">
488
            <header><h2>Meter</h2></header>
489
            <div><meter value="2" min="0" max="10">2 out of 10</meter></div>
490
            <footer><p><a href="#top">[Top]</a></p></footer>
491
          </article>
492
          <article id="embedded__progress">
493
            <header><h2>Progress</h2></header>
494
            <div><progress>progress</progress></div>
495
            <footer><p><a href="#top">[Top]</a></p></footer>
496
          </article>
497
          <article id="embedded__svg">
498
            <header><h2>Inline SVG</h2></header>
499
            <div><svg width="100px" height="100px"><circle cx="100" cy="100" r="100" fill="#1fa3ec"></circle></svg></div>
500
            <footer><p><a href="#top">[Top]</a></p></footer>
501
          </article>
502
          <article id="embedded__iframe">
503
            <header><h2>IFrame</h2></header>
504
            <div><iframe src="index.html" height="300"></iframe></div>
505
            <footer><p><a href="#top">[Top]</a></p></footer>
506
          </article>
507
        </section>
508
        <section id="text">
509
          <header><h1>Text</h1></header>
510
          <article id="text__headings">
511
            <header>
512
              <h1>Headings</h1>
513
            </header>
514
            <div>
515
              <h1>Heading 1</h1>
516
              <h2>Heading 2</h2>
517
              <h3>Heading 3</h3>
518
              <h4>Heading 4</h4>
519
              <h5>Heading 5</h5>
520
              <h6>Heading 6</h6>
521
            </div>
522
            <footer><p><a href="#top">[Top]</a></p></footer>
523
          </article>
524
          <article id="text__paragraphs">
525
            <header><h1>Paragraphs</h1></header>
526
            <div>
527
              <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
528
            </div>
529
            <footer><p><a href="#top">[Top]</a></p></footer>
530
          </article>
531
          <article id="text__blockquotes">
532
            <header><h1>Blockquotes</h1></header>
533
            <div>
534
              <blockquote>
535
                <p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
536
                <p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
537
                <cite><a href="#!">Said no one, ever.</a></cite>
538
              </blockquote>
539
            </div>
540
            <footer><p><a href="#top">[Top]</a></p></footer>
541
          </article>
542
          <article id="text__lists">
543
            <header><h1>Lists</h1></header>
544
            <div>
545
              <h3>Definition list</h3>
546
              <dl>
547
                <dt>Definition List Title</dt>
548
                <dd>This is a definition list division.</dd>
549
              </dl>
550
              <h3>Ordered List</h3>
551
              <ol>
552
                <li>List Item 1</li>
553
                <li>List Item 2</li>
554
                <li>List Item 3</li>
555
              </ol>
556
              <h3>Unordered List</h3>
557
              <ul>
558
                <li>List Item 1</li>
559
                <li>List Item 2</li>
560
                <li>List Item 3</li>
561
              </ul>
562
            </div>
563
            <footer><p><a href="#top">[Top]</a></p></footer>
564
          </article>
565
          <article id="text__hr">
566
            <header><h1>Horizontal rules</h1></header>
567
            <div>
568
              <hr>
569
            </div>
570
            <footer><p><a href="#top">[Top]</a></p></footer>
571
          </article>
572
          <article id="text__tables">
573
            <header><h1>Tabular data</h1></header>
574
            <table>
575
              <caption>Table Caption</caption>
576
              <thead>
577
                <tr>
578
                  <th>Table Heading 1</th>
579
                  <th>Table Heading 2</th>
580
                  <th>Table Heading 3</th>
581
                  <th>Table Heading 4</th>
582
                  <th>Table Heading 5</th>
583
                </tr>
584
              </thead>
585
              <tfoot>
586
                <tr>
587
                  <th>Table Footer 1</th>
588
                  <th>Table Footer 2</th>
589
                  <th>Table Footer 3</th>
590
                  <th>Table Footer 4</th>
591
                  <th>Table Footer 5</th>
592
                </tr>
593
              </tfoot>
594
              <tbody>
595
                <tr>
596
                  <td>Table Cell 1</td>
597
                  <td>Table Cell 2</td>
598
                  <td>Table Cell 3</td>
599
                  <td>Table Cell 4</td>
600
                  <td>Table Cell 5</td>
601
                </tr>
602
                <tr>
603
                  <td>Table Cell 1</td>
604
                  <td>Table Cell 2</td>
605
                  <td>Table Cell 3</td>
606
                  <td>Table Cell 4</td>
607
                  <td>Table Cell 5</td>
608
                </tr>
609
                <tr>
610
                  <td>Table Cell 1</td>
611
                  <td>Table Cell 2</td>
612
                  <td>Table Cell 3</td>
613
                  <td>Table Cell 4</td>
614
                  <td>Table Cell 5</td>
615
                </tr>
616
                <tr>
617
                  <td>Table Cell 1</td>
618
                  <td>Table Cell 2</td>
619
                  <td>Table Cell 3</td>
620
                  <td>Table Cell 4</td>
621
                  <td>Table Cell 5</td>
622
                </tr>
623
              </tbody>
624
            </table>
625
            <footer><p><a href="#top">[Top]</a></p></footer>
626
          </article>
627
          <article id="text__code">
628
            <header><h1>Code</h1></header>
629
            <div>
630
              <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
631
              <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
632
              <p><strong>Sample output:</strong> <samp>This is sample output from a computer program.</samp></p>
633
              <h2>Pre-formatted text</h2>
634
              <pre>P R E F O R M A T T E D T E X T
635
  ! " # $ % &amp; ' ( ) * + , - . /
636
  0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ?
637
  @ A B C D E F G H I J K L M N O
638
  P Q R S T U V W X Y Z [ \ ] ^ _
639
  ` a b c d e f g h i j k l m n o
640
  p q r s t u v w x y z { | } ~ </pre>
641
            </div>
642
            <footer><p><a href="#top">[Top]</a></p></footer>
643
          </article>
644
          <article id="text__inline">
645
            <header><h1>Inline elements</h1></header>
646
            <div>
647
              <p><a href="#!">This is a text link</a>.</p>
648
              <p><strong>Strong is used to indicate strong importance.</strong></p>
649
              <p><em>This text has added emphasis.</em></p>
650
              <p>The <b>b element</b> is stylistically different text from normal text, without any special importance.</p>
651
              <p>The <i>i element</i> is text that is offset from the normal text.</p>
652
              <p>The <u>u element</u> is text with an unarticulated, though explicitly rendered, non-textual annotation.</p>
653
              <p><del>This text is deleted</del> and <ins>This text is inserted</ins>.</p>
654
              <p><s>This text has a strikethrough</s>.</p>
655
              <p>Superscript<sup>®</sup>.</p>
656
              <p>Subscript for things like H<sub>2</sub>O.</p>
657
              <p><small>This small text is small for for fine print, etc.</small></p>
658
              <p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
659
              <p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline quotation.</q></p>
660
              <p><cite>This is a citation.</cite></p>
661
              <p>The <dfn>dfn element</dfn> indicates a definition.</p>
662
              <p>The <mark>mark element</mark> indicates a highlight.</p>
663
              <p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
664
              <p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
665
            </div>
666
            <footer><p><a href="#top">[Top]</a></p></footer>
667
          </article>
668
          <article id="text__comments">
669
            <header><h1>HTML Comments</h1></header>
670
            <div>
671
              <p>There is comment here: <!--This comment should not be displayed--></p>
672
              <p>There is a comment spanning multiple tags and lines below here.</p>
673
              <!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
674
              <p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
675
              <p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
676
            </div>
677
            <footer><p><a href="#top">[Top]</a></p></footer>
678
          </article>
679
        </section>
680
        <section id="embedded">
681
          <header><h1>Embedded content</h1></header>
682
          <article id="embedded__images">
683
            <header><h2>Images</h2></header>
684
            <div>
685
              <h3>No <code>&lt;figure&gt;</code> element</h3>
686
              <p><img src="http://placekitten.com/480/480" alt="Image alt text"></p>
687
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, no <code>&lt;figcaption&gt;</code></h3>
688
              <figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure>
689
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaption&gt;</code></h3>
690
              <figure>
691
                <img src="http://placekitten.com/420/420" alt="Image alt text">
692
                <figcaption>Here is a caption for this image.</figcaption>
693
              </figure>
694
            </div>
695
            <footer><p><a href="#top">[Top]</a></p></footer>
696
          </article>
697
          <article id="embedded__audio">
698
            <header><h2>Audio</h2></header>
699
            <div><audio controls="">audio</audio></div>
700
            <footer><p><a href="#top">[Top]</a></p></footer>
701
          </article>
702
          <article id="embedded__video">
703
            <header><h2>Video</h2></header>
704
            <div><video controls="">video</video></div>
705
            <footer><p><a href="#top">[Top]</a></p></footer>
706
          </article>
707
          <article id="embedded__canvas">
708
            <header><h2>Canvas</h2></header>
709
            <div><canvas>canvas</canvas></div>
710
            <footer><p><a href="#top">[Top]</a></p></footer>
711
          </article>
712
          <article id="embedded__meter">
713
            <header><h2>Meter</h2></header>
714
            <div><meter value="2" min="0" max="10">2 out of 10</meter></div>
715
            <footer><p><a href="#top">[Top]</a></p></footer>
716
          </article>
717
          <article id="embedded__progress">
718
            <header><h2>Progress</h2></header>
719
            <div><progress>progress</progress></div>
720
            <footer><p><a href="#top">[Top]</a></p></footer>
721
          </article>
722
          <article id="embedded__svg">
723
            <header><h2>Inline SVG</h2></header>
724
            <div><svg width="100px" height="100px"><circle cx="100" cy="100" r="100" fill="#1fa3ec"></circle></svg></div>
725
            <footer><p><a href="#top">[Top]</a></p></footer>
726
          </article>
727
          <article id="embedded__iframe">
728
            <header><h2>IFrame</h2></header>
729
            <div><iframe src="index.html" height="300"></iframe></div>
730
            <footer><p><a href="#top">[Top]</a></p></footer>
731
          </article>
732
        </section>
733
        <section id="text">
734
          <header><h1>Text</h1></header>
735
          <article id="text__headings">
736
            <header>
737
              <h1>Headings</h1>
738
            </header>
739
            <div>
740
              <h1>Heading 1</h1>
741
              <h2>Heading 2</h2>
742
              <h3>Heading 3</h3>
743
              <h4>Heading 4</h4>
744
              <h5>Heading 5</h5>
745
              <h6>Heading 6</h6>
746
            </div>
747
            <footer><p><a href="#top">[Top]</a></p></footer>
748
          </article>
749
          <article id="text__paragraphs">
750
            <header><h1>Paragraphs</h1></header>
751
            <div>
752
              <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
753
            </div>
754
            <footer><p><a href="#top">[Top]</a></p></footer>
755
          </article>
756
          <article id="text__blockquotes">
757
            <header><h1>Blockquotes</h1></header>
758
            <div>
759
              <blockquote>
760
                <p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
761
                <p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
762
                <cite><a href="#!">Said no one, ever.</a></cite>
763
              </blockquote>
764
            </div>
765
            <footer><p><a href="#top">[Top]</a></p></footer>
766
          </article>
767
          <article id="text__lists">
768
            <header><h1>Lists</h1></header>
769
            <div>
770
              <h3>Definition list</h3>
771
              <dl>
772
                <dt>Definition List Title</dt>
773
                <dd>This is a definition list division.</dd>
774
              </dl>
775
              <h3>Ordered List</h3>
776
              <ol>
777
                <li>List Item 1</li>
778
                <li>List Item 2</li>
779
                <li>List Item 3</li>
780
              </ol>
781
              <h3>Unordered List</h3>
782
              <ul>
783
                <li>List Item 1</li>
784
                <li>List Item 2</li>
785
                <li>List Item 3</li>
786
              </ul>
787
            </div>
788
            <footer><p><a href="#top">[Top]</a></p></footer>
789
          </article>
790
          <article id="text__hr">
791
            <header><h1>Horizontal rules</h1></header>
792
            <div>
793
              <hr>
794
            </div>
795
            <footer><p><a href="#top">[Top]</a></p></footer>
796
          </article>
797
          <article id="text__tables">
798
            <header><h1>Tabular data</h1></header>
799
            <table>
800
              <caption>Table Caption</caption>
801
              <thead>
802
                <tr>
803
                  <th>Table Heading 1</th>
804
                  <th>Table Heading 2</th>
805
                  <th>Table Heading 3</th>
806
                  <th>Table Heading 4</th>
807
                  <th>Table Heading 5</th>
808
                </tr>
809
              </thead>
810
              <tfoot>
811
                <tr>
812
                  <th>Table Footer 1</th>
813
                  <th>Table Footer 2</th>
814
                  <th>Table Footer 3</th>
815
                  <th>Table Footer 4</th>
816
                  <th>Table Footer 5</th>
817
                </tr>
818
              </tfoot>
819
              <tbody>
820
                <tr>
821
                  <td>Table Cell 1</td>
822
                  <td>Table Cell 2</td>
823
                  <td>Table Cell 3</td>
824
                  <td>Table Cell 4</td>
825
                  <td>Table Cell 5</td>
826
                </tr>
827
                <tr>
828
                  <td>Table Cell 1</td>
829
                  <td>Table Cell 2</td>
830
                  <td>Table Cell 3</td>
831
                  <td>Table Cell 4</td>
832
                  <td>Table Cell 5</td>
833
                </tr>
834
                <tr>
835
                  <td>Table Cell 1</td>
836
                  <td>Table Cell 2</td>
837
                  <td>Table Cell 3</td>
838
                  <td>Table Cell 4</td>
839
                  <td>Table Cell 5</td>
840
                </tr>
841
                <tr>
842
                  <td>Table Cell 1</td>
843
                  <td>Table Cell 2</td>
844
                  <td>Table Cell 3</td>
845
                  <td>Table Cell 4</td>
846
                  <td>Table Cell 5</td>
847
                </tr>
848
              </tbody>
849
            </table>
850
            <footer><p><a href="#top">[Top]</a></p></footer>
851
          </article>
852
          <article id="text__code">
853
            <header><h1>Code</h1></header>
854
            <div>
855
              <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
856
              <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
857
              <p><strong>Sample output:</strong> <samp>This is sample output from a computer program.</samp></p>
858
              <h2>Pre-formatted text</h2>
859
              <pre>P R E F O R M A T T E D T E X T
860
  ! " # $ % &amp; ' ( ) * + , - . /
861
  0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ?
862
  @ A B C D E F G H I J K L M N O
863
  P Q R S T U V W X Y Z [ \ ] ^ _
864
  ` a b c d e f g h i j k l m n o
865
  p q r s t u v w x y z { | } ~ </pre>
866
            </div>
867
            <footer><p><a href="#top">[Top]</a></p></footer>
868
          </article>
869
          <article id="text__inline">
870
            <header><h1>Inline elements</h1></header>
871
            <div>
872
              <p><a href="#!">This is a text link</a>.</p>
873
              <p><strong>Strong is used to indicate strong importance.</strong></p>
874
              <p><em>This text has added emphasis.</em></p>
875
              <p>The <b>b element</b> is stylistically different text from normal text, without any special importance.</p>
876
              <p>The <i>i element</i> is text that is offset from the normal text.</p>
877
              <p>The <u>u element</u> is text with an unarticulated, though explicitly rendered, non-textual annotation.</p>
878
              <p><del>This text is deleted</del> and <ins>This text is inserted</ins>.</p>
879
              <p><s>This text has a strikethrough</s>.</p>
880
              <p>Superscript<sup>®</sup>.</p>
881
              <p>Subscript for things like H<sub>2</sub>O.</p>
882
              <p><small>This small text is small for for fine print, etc.</small></p>
883
              <p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
884
              <p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline quotation.</q></p>
885
              <p><cite>This is a citation.</cite></p>
886
              <p>The <dfn>dfn element</dfn> indicates a definition.</p>
887
              <p>The <mark>mark element</mark> indicates a highlight.</p>
888
              <p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
889
              <p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
890
            </div>
891
            <footer><p><a href="#top">[Top]</a></p></footer>
892
          </article>
893
          <article id="text__comments">
894
            <header><h1>HTML Comments</h1></header>
895
            <div>
896
              <p>There is comment here: <!--This comment should not be displayed--></p>
897
              <p>There is a comment spanning multiple tags and lines below here.</p>
898
              <!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
899
              <p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
900
              <p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
901
            </div>
902
            <footer><p><a href="#top">[Top]</a></p></footer>
903
          </article>
904
        </section>
905
        <section id="embedded">
906
          <header><h1>Embedded content</h1></header>
907
          <article id="embedded__images">
908
            <header><h2>Images</h2></header>
909
            <div>
910
              <h3>No <code>&lt;figure&gt;</code> element</h3>
911
              <p><img src="http://placekitten.com/480/480" alt="Image alt text"></p>
912
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, no <code>&lt;figcaption&gt;</code></h3>
913
              <figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure>
914
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaption&gt;</code></h3>
915
              <figure>
916
                <img src="http://placekitten.com/420/420" alt="Image alt text">
917
                <figcaption>Here is a caption for this image.</figcaption>
918
              </figure>
919
            </div>
920
            <footer><p><a href="#top">[Top]</a></p></footer>
921
          </article>
922
          <article id="embedded__audio">
923
            <header><h2>Audio</h2></header>
924
            <div><audio controls="">audio</audio></div>
925
            <footer><p><a href="#top">[Top]</a></p></footer>
926
          </article>
927
          <article id="embedded__video">
928
            <header><h2>Video</h2></header>
929
            <div><video controls="">video</video></div>
930
            <footer><p><a href="#top">[Top]</a></p></footer>
931
          </article>
932
          <article id="embedded__canvas">
933
            <header><h2>Canvas</h2></header>
934
            <div><canvas>canvas</canvas></div>
935
            <footer><p><a href="#top">[Top]</a></p></footer>
936
          </article>
937
          <article id="embedded__meter">
938
            <header><h2>Meter</h2></header>
939
            <div><meter value="2" min="0" max="10">2 out of 10</meter></div>
940
            <footer><p><a href="#top">[Top]</a></p></footer>
941
          </article>
942
          <article id="embedded__progress">
943
            <header><h2>Progress</h2></header>
944
            <div><progress>progress</progress></div>
945
            <footer><p><a href="#top">[Top]</a></p></footer>
946
          </article>
947
          <article id="embedded__svg">
948
            <header><h2>Inline SVG</h2></header>
949
            <div><svg width="100px" height="100px"><circle cx="100" cy="100" r="100" fill="#1fa3ec"></circle></svg></div>
950
            <footer><p><a href="#top">[Top]</a></p></footer>
951
          </article>
952
          <article id="embedded__iframe">
953
            <header><h2>IFrame</h2></header>
954
            <div><iframe src="index.html" height="300"></iframe></div>
955
            <footer><p><a href="#top">[Top]</a></p></footer>
956
          </article>
957
        </section>
958
        <section id="text">
959
          <header><h1>Text</h1></header>
960
          <article id="text__headings">
961
            <header>
962
              <h1>Headings</h1>
963
            </header>
964
            <div>
965
              <h1>Heading 1</h1>
966
              <h2>Heading 2</h2>
967
              <h3>Heading 3</h3>
968
              <h4>Heading 4</h4>
969
              <h5>Heading 5</h5>
970
              <h6>Heading 6</h6>
971
            </div>
972
            <footer><p><a href="#top">[Top]</a></p></footer>
973
          </article>
974
          <article id="text__paragraphs">
975
            <header><h1>Paragraphs</h1></header>
976
            <div>
977
              <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
978
            </div>
979
            <footer><p><a href="#top">[Top]</a></p></footer>
980
          </article>
981
          <article id="text__blockquotes">
982
            <header><h1>Blockquotes</h1></header>
983
            <div>
984
              <blockquote>
985
                <p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
986
                <p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
987
                <cite><a href="#!">Said no one, ever.</a></cite>
988
              </blockquote>
989
            </div>
990
            <footer><p><a href="#top">[Top]</a></p></footer>
991
          </article>
992
          <article id="text__lists">
993
            <header><h1>Lists</h1></header>
994
            <div>
995
              <h3>Definition list</h3>
996
              <dl>
997
                <dt>Definition List Title</dt>
998
                <dd>This is a definition list division.</dd>
999
              </dl>
1000
              <h3>Ordered List</h3>
1001
              <ol>
1002
                <li>List Item 1</li>
1003
                <li>List Item 2</li>
1004
                <li>List Item 3</li>
1005
              </ol>
1006
              <h3>Unordered List</h3>
1007
              <ul>
1008
                <li>List Item 1</li>
1009
                <li>List Item 2</li>
1010
                <li>List Item 3</li>
1011
              </ul>
1012
            </div>
1013
            <footer><p><a href="#top">[Top]</a></p></footer>
1014
          </article>
1015
          <article id="text__hr">
1016
            <header><h1>Horizontal rules</h1></header>
1017
            <div>
1018
              <hr>
1019
            </div>
1020
            <footer><p><a href="#top">[Top]</a></p></footer>
1021
          </article>
1022
          <article id="text__tables">
1023
            <header><h1>Tabular data</h1></header>
1024
            <table>
1025
              <caption>Table Caption</caption>
1026
              <thead>
1027
                <tr>
1028
                  <th>Table Heading 1</th>
1029
                  <th>Table Heading 2</th>
1030
                  <th>Table Heading 3</th>
1031
                  <th>Table Heading 4</th>
1032
                  <th>Table Heading 5</th>
1033
                </tr>
1034
              </thead>
1035
              <tfoot>
1036
                <tr>
1037
                  <th>Table Footer 1</th>
1038
                  <th>Table Footer 2</th>
1039
                  <th>Table Footer 3</th>
1040
                  <th>Table Footer 4</th>
1041
                  <th>Table Footer 5</th>
1042
                </tr>
1043
              </tfoot>
1044
              <tbody>
1045
                <tr>
1046
                  <td>Table Cell 1</td>
1047
                  <td>Table Cell 2</td>
1048
                  <td>Table Cell 3</td>
1049
                  <td>Table Cell 4</td>
1050
                  <td>Table Cell 5</td>
1051
                </tr>
1052
                <tr>
1053
                  <td>Table Cell 1</td>
1054
                  <td>Table Cell 2</td>
1055
                  <td>Table Cell 3</td>
1056
                  <td>Table Cell 4</td>
1057
                  <td>Table Cell 5</td>
1058
                </tr>
1059
                <tr>
1060
                  <td>Table Cell 1</td>
1061
                  <td>Table Cell 2</td>
1062
                  <td>Table Cell 3</td>
1063
                  <td>Table Cell 4</td>
1064
                  <td>Table Cell 5</td>
1065
                </tr>
1066
                <tr>
1067
                  <td>Table Cell 1</td>
1068
                  <td>Table Cell 2</td>
1069
                  <td>Table Cell 3</td>
1070
                  <td>Table Cell 4</td>
1071
                  <td>Table Cell 5</td>
1072
                </tr>
1073
              </tbody>
1074
            </table>
1075
            <footer><p><a href="#top">[Top]</a></p></footer>
1076
          </article>
1077
          <article id="text__code">
1078
            <header><h1>Code</h1></header>
1079
            <div>
1080
              <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
1081
              <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
1082
              <p><strong>Sample output:</strong> <samp>This is sample output from a computer program.</samp></p>
1083
              <h2>Pre-formatted text</h2>
1084
              <pre>P R E F O R M A T T E D T E X T
1085
  ! " # $ % &amp; ' ( ) * + , - . /
1086
  0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ?
1087
  @ A B C D E F G H I J K L M N O
1088
  P Q R S T U V W X Y Z [ \ ] ^ _
1089
  ` a b c d e f g h i j k l m n o
1090
  p q r s t u v w x y z { | } ~ </pre>
1091
            </div>
1092
            <footer><p><a href="#top">[Top]</a></p></footer>
1093
          </article>
1094
          <article id="text__inline">
1095
            <header><h1>Inline elements</h1></header>
1096
            <div>
1097
              <p><a href="#!">This is a text link</a>.</p>
1098
              <p><strong>Strong is used to indicate strong importance.</strong></p>
1099
              <p><em>This text has added emphasis.</em></p>
1100
              <p>The <b>b element</b> is stylistically different text from normal text, without any special importance.</p>
1101
              <p>The <i>i element</i> is text that is offset from the normal text.</p>
1102
              <p>The <u>u element</u> is text with an unarticulated, though explicitly rendered, non-textual annotation.</p>
1103
              <p><del>This text is deleted</del> and <ins>This text is inserted</ins>.</p>
1104
              <p><s>This text has a strikethrough</s>.</p>
1105
              <p>Superscript<sup>®</sup>.</p>
1106
              <p>Subscript for things like H<sub>2</sub>O.</p>
1107
              <p><small>This small text is small for for fine print, etc.</small></p>
1108
              <p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
1109
              <p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline quotation.</q></p>
1110
              <p><cite>This is a citation.</cite></p>
1111
              <p>The <dfn>dfn element</dfn> indicates a definition.</p>
1112
              <p>The <mark>mark element</mark> indicates a highlight.</p>
1113
              <p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
1114
              <p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
1115
            </div>
1116
            <footer><p><a href="#top">[Top]</a></p></footer>
1117
          </article>
1118
          <article id="text__comments">
1119
            <header><h1>HTML Comments</h1></header>
1120
            <div>
1121
              <p>There is comment here: <!--This comment should not be displayed--></p>
1122
              <p>There is a comment spanning multiple tags and lines below here.</p>
1123
              <!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
1124
              <p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
1125
              <p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
1126
            </div>
1127
            <footer><p><a href="#top">[Top]</a></p></footer>
1128
          </article>
1129
        </section>
1130
        <section id="embedded">
1131
          <header><h1>Embedded content</h1></header>
1132
          <article id="embedded__images">
1133
            <header><h2>Images</h2></header>
1134
            <div>
1135
              <h3>No <code>&lt;figure&gt;</code> element</h3>
1136
              <p><img src="http://placekitten.com/480/480" alt="Image alt text"></p>
1137
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, no <code>&lt;figcaption&gt;</code></h3>
1138
              <figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure>
1139
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaption&gt;</code></h3>
1140
              <figure>
1141
                <img src="http://placekitten.com/420/420" alt="Image alt text">
1142
                <figcaption>Here is a caption for this image.</figcaption>
1143
              </figure>
1144
            </div>
1145
            <footer><p><a href="#top">[Top]</a></p></footer>
1146
          </article>
1147
          <article id="embedded__audio">
1148
            <header><h2>Audio</h2></header>
1149
            <div><audio controls="">audio</audio></div>
1150
            <footer><p><a href="#top">[Top]</a></p></footer>
1151
          </article>
1152
          <article id="embedded__video">
1153
            <header><h2>Video</h2></header>
1154
            <div><video controls="">video</video></div>
1155
            <footer><p><a href="#top">[Top]</a></p></footer>
1156
          </article>
1157
          <article id="embedded__canvas">
1158
            <header><h2>Canvas</h2></header>
1159
            <div><canvas>canvas</canvas></div>
1160
            <footer><p><a href="#top">[Top]</a></p></footer>
1161
          </article>
1162
          <article id="embedded__meter">
1163
            <header><h2>Meter</h2></header>
1164
            <div><meter value="2" min="0" max="10">2 out of 10</meter></div>
1165
            <footer><p><a href="#top">[Top]</a></p></footer>
1166
          </article>
1167
          <article id="embedded__progress">
1168
            <header><h2>Progress</h2></header>
1169
            <div><progress>progress</progress></div>
1170
            <footer><p><a href="#top">[Top]</a></p></footer>
1171
          </article>
1172
          <article id="embedded__svg">
1173
            <header><h2>Inline SVG</h2></header>
1174
            <div><svg width="100px" height="100px"><circle cx="100" cy="100" r="100" fill="#1fa3ec"></circle></svg></div>
1175
            <footer><p><a href="#top">[Top]</a></p></footer>
1176
          </article>
1177
          <article id="embedded__iframe">
1178
            <header><h2>IFrame</h2></header>
1179
            <div><iframe src="index.html" height="300"></iframe></div>
1180
            <footer><p><a href="#top">[Top]</a></p></footer>
1181
          </article>
1182
        </section>
1183
        <section id="text">
1184
          <header><h1>Text</h1></header>
1185
          <article id="text__headings">
1186
            <header>
1187
              <h1>Headings</h1>
1188
            </header>
1189
            <div>
1190
              <h1>Heading 1</h1>
1191
              <h2>Heading 2</h2>
1192
              <h3>Heading 3</h3>
1193
              <h4>Heading 4</h4>
1194
              <h5>Heading 5</h5>
1195
              <h6>Heading 6</h6>
1196
            </div>
1197
            <footer><p><a href="#top">[Top]</a></p></footer>
1198
          </article>
1199
          <article id="text__paragraphs">
1200
            <header><h1>Paragraphs</h1></header>
1201
            <div>
1202
              <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
1203
            </div>
1204
            <footer><p><a href="#top">[Top]</a></p></footer>
1205
          </article>
1206
          <article id="text__blockquotes">
1207
            <header><h1>Blockquotes</h1></header>
1208
            <div>
1209
              <blockquote>
1210
                <p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
1211
                <p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
1212
                <cite><a href="#!">Said no one, ever.</a></cite>
1213
              </blockquote>
1214
            </div>
1215
            <footer><p><a href="#top">[Top]</a></p></footer>
1216
          </article>
1217
          <article id="text__lists">
1218
            <header><h1>Lists</h1></header>
1219
            <div>
1220
              <h3>Definition list</h3>
1221
              <dl>
1222
                <dt>Definition List Title</dt>
1223
                <dd>This is a definition list division.</dd>
1224
              </dl>
1225
              <h3>Ordered List</h3>
1226
              <ol>
1227
                <li>List Item 1</li>
1228
                <li>List Item 2</li>
1229
                <li>List Item 3</li>
1230
              </ol>
1231
              <h3>Unordered List</h3>
1232
              <ul>
1233
                <li>List Item 1</li>
1234
                <li>List Item 2</li>
1235
                <li>List Item 3</li>
1236
              </ul>
1237
            </div>
1238
            <footer><p><a href="#top">[Top]</a></p></footer>
1239
          </article>
1240
          <article id="text__hr">
1241
            <header><h1>Horizontal rules</h1></header>
1242
            <div>
1243
              <hr>
1244
            </div>
1245
            <footer><p><a href="#top">[Top]</a></p></footer>
1246
          </article>
1247
          <article id="text__tables">
1248
            <header><h1>Tabular data</h1></header>
1249
            <table>
1250
              <caption>Table Caption</caption>
1251
              <thead>
1252
                <tr>
1253
                  <th>Table Heading 1</th>
1254
                  <th>Table Heading 2</th>
1255
                  <th>Table Heading 3</th>
1256
                  <th>Table Heading 4</th>
1257
                  <th>Table Heading 5</th>
1258
                </tr>
1259
              </thead>
1260
              <tfoot>
1261
                <tr>
1262
                  <th>Table Footer 1</th>
1263
                  <th>Table Footer 2</th>
1264
                  <th>Table Footer 3</th>
1265
                  <th>Table Footer 4</th>
1266
                  <th>Table Footer 5</th>
1267
                </tr>
1268
              </tfoot>
1269
              <tbody>
1270
                <tr>
1271
                  <td>Table Cell 1</td>
1272
                  <td>Table Cell 2</td>
1273
                  <td>Table Cell 3</td>
1274
                  <td>Table Cell 4</td>
1275
                  <td>Table Cell 5</td>
1276
                </tr>
1277
                <tr>
1278
                  <td>Table Cell 1</td>
1279
                  <td>Table Cell 2</td>
1280
                  <td>Table Cell 3</td>
1281
                  <td>Table Cell 4</td>
1282
                  <td>Table Cell 5</td>
1283
                </tr>
1284
                <tr>
1285
                  <td>Table Cell 1</td>
1286
                  <td>Table Cell 2</td>
1287
                  <td>Table Cell 3</td>
1288
                  <td>Table Cell 4</td>
1289
                  <td>Table Cell 5</td>
1290
                </tr>
1291
                <tr>
1292
                  <td>Table Cell 1</td>
1293
                  <td>Table Cell 2</td>
1294
                  <td>Table Cell 3</td>
1295
                  <td>Table Cell 4</td>
1296
                  <td>Table Cell 5</td>
1297
                </tr>
1298
              </tbody>
1299
            </table>
1300
            <footer><p><a href="#top">[Top]</a></p></footer>
1301
          </article>
1302
          <article id="text__code">
1303
            <header><h1>Code</h1></header>
1304
            <div>
1305
              <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
1306
              <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
1307
              <p><strong>Sample output:</strong> <samp>This is sample output from a computer program.</samp></p>
1308
              <h2>Pre-formatted text</h2>
1309
              <pre>P R E F O R M A T T E D T E X T
1310
  ! " # $ % &amp; ' ( ) * + , - . /
1311
  0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ?
1312
  @ A B C D E F G H I J K L M N O
1313
  P Q R S T U V W X Y Z [ \ ] ^ _
1314
  ` a b c d e f g h i j k l m n o
1315
  p q r s t u v w x y z { | } ~ </pre>
1316
            </div>
1317
            <footer><p><a href="#top">[Top]</a></p></footer>
1318
          </article>
1319
          <article id="text__inline">
1320
            <header><h1>Inline elements</h1></header>
1321
            <div>
1322
              <p><a href="#!">This is a text link</a>.</p>
1323
              <p><strong>Strong is used to indicate strong importance.</strong></p>
1324
              <p><em>This text has added emphasis.</em></p>
1325
              <p>The <b>b element</b> is stylistically different text from normal text, without any special importance.</p>
1326
              <p>The <i>i element</i> is text that is offset from the normal text.</p>
1327
              <p>The <u>u element</u> is text with an unarticulated, though explicitly rendered, non-textual annotation.</p>
1328
              <p><del>This text is deleted</del> and <ins>This text is inserted</ins>.</p>
1329
              <p><s>This text has a strikethrough</s>.</p>
1330
              <p>Superscript<sup>®</sup>.</p>
1331
              <p>Subscript for things like H<sub>2</sub>O.</p>
1332
              <p><small>This small text is small for for fine print, etc.</small></p>
1333
              <p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
1334
              <p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline quotation.</q></p>
1335
              <p><cite>This is a citation.</cite></p>
1336
              <p>The <dfn>dfn element</dfn> indicates a definition.</p>
1337
              <p>The <mark>mark element</mark> indicates a highlight.</p>
1338
              <p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
1339
              <p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
1340
            </div>
1341
            <footer><p><a href="#top">[Top]</a></p></footer>
1342
          </article>
1343
          <article id="text__comments">
1344
            <header><h1>HTML Comments</h1></header>
1345
            <div>
1346
              <p>There is comment here: <!--This comment should not be displayed--></p>
1347
              <p>There is a comment spanning multiple tags and lines below here.</p>
1348
              <!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
1349
              <p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
1350
              <p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
1351
            </div>
1352
            <footer><p><a href="#top">[Top]</a></p></footer>
1353
          </article>
1354
        </section>
1355
        <section id="embedded">
1356
          <header><h1>Embedded content</h1></header>
1357
          <article id="embedded__images">
1358
            <header><h2>Images</h2></header>
1359
            <div>
1360
              <h3>No <code>&lt;figure&gt;</code> element</h3>
1361
              <p><img src="http://placekitten.com/480/480" alt="Image alt text"></p>
1362
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, no <code>&lt;figcaption&gt;</code></h3>
1363
              <figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure>
1364
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaption&gt;</code></h3>
1365
              <figure>
1366
                <img src="http://placekitten.com/420/420" alt="Image alt text">
1367
                <figcaption>Here is a caption for this image.</figcaption>
1368
              </figure>
1369
            </div>
1370
            <footer><p><a href="#top">[Top]</a></p></footer>
1371
          </article>
1372
          <article id="embedded__audio">
1373
            <header><h2>Audio</h2></header>
1374
            <div><audio controls="">audio</audio></div>
1375
            <footer><p><a href="#top">[Top]</a></p></footer>
1376
          </article>
1377
          <article id="embedded__video">
1378
            <header><h2>Video</h2></header>
1379
            <div><video controls="">video</video></div>
1380
            <footer><p><a href="#top">[Top]</a></p></footer>
1381
          </article>
1382
          <article id="embedded__canvas">
1383
            <header><h2>Canvas</h2></header>
1384
            <div><canvas>canvas</canvas></div>
1385
            <footer><p><a href="#top">[Top]</a></p></footer>
1386
          </article>
1387
          <article id="embedded__meter">
1388
            <header><h2>Meter</h2></header>
1389
            <div><meter value="2" min="0" max="10">2 out of 10</meter></div>
1390
            <footer><p><a href="#top">[Top]</a></p></footer>
1391
          </article>
1392
          <article id="embedded__progress">
1393
            <header><h2>Progress</h2></header>
1394
            <div><progress>progress</progress></div>
1395
            <footer><p><a href="#top">[Top]</a></p></footer>
1396
          </article>
1397
          <article id="embedded__svg">
1398
            <header><h2>Inline SVG</h2></header>
1399
            <div><svg width="100px" height="100px"><circle cx="100" cy="100" r="100" fill="#1fa3ec"></circle></svg></div>
1400
            <footer><p><a href="#top">[Top]</a></p></footer>
1401
          </article>
1402
          <article id="embedded__iframe">
1403
            <header><h2>IFrame</h2></header>
1404
            <div><iframe src="index.html" height="300"></iframe></div>
1405
            <footer><p><a href="#top">[Top]</a></p></footer>
1406
          </article>
1407
        </section>
1408
        <section id="text">
1409
          <header><h1>Text</h1></header>
1410
          <article id="text__headings">
1411
            <header>
1412
              <h1>Headings</h1>
1413
            </header>
1414
            <div>
1415
              <h1>Heading 1</h1>
1416
              <h2>Heading 2</h2>
1417
              <h3>Heading 3</h3>
1418
              <h4>Heading 4</h4>
1419
              <h5>Heading 5</h5>
1420
              <h6>Heading 6</h6>
1421
            </div>
1422
            <footer><p><a href="#top">[Top]</a></p></footer>
1423
          </article>
1424
          <article id="text__paragraphs">
1425
            <header><h1>Paragraphs</h1></header>
1426
            <div>
1427
              <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
1428
            </div>
1429
            <footer><p><a href="#top">[Top]</a></p></footer>
1430
          </article>
1431
          <article id="text__blockquotes">
1432
            <header><h1>Blockquotes</h1></header>
1433
            <div>
1434
              <blockquote>
1435
                <p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
1436
                <p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
1437
                <cite><a href="#!">Said no one, ever.</a></cite>
1438
              </blockquote>
1439
            </div>
1440
            <footer><p><a href="#top">[Top]</a></p></footer>
1441
          </article>
1442
          <article id="text__lists">
1443
            <header><h1>Lists</h1></header>
1444
            <div>
1445
              <h3>Definition list</h3>
1446
              <dl>
1447
                <dt>Definition List Title</dt>
1448
                <dd>This is a definition list division.</dd>
1449
              </dl>
1450
              <h3>Ordered List</h3>
1451
              <ol>
1452
                <li>List Item 1</li>
1453
                <li>List Item 2</li>
1454
                <li>List Item 3</li>
1455
              </ol>
1456
              <h3>Unordered List</h3>
1457
              <ul>
1458
                <li>List Item 1</li>
1459
                <li>List Item 2</li>
1460
                <li>List Item 3</li>
1461
              </ul>
1462
            </div>
1463
            <footer><p><a href="#top">[Top]</a></p></footer>
1464
          </article>
1465
          <article id="text__hr">
1466
            <header><h1>Horizontal rules</h1></header>
1467
            <div>
1468
              <hr>
1469
            </div>
1470
            <footer><p><a href="#top">[Top]</a></p></footer>
1471
          </article>
1472
          <article id="text__tables">
1473
            <header><h1>Tabular data</h1></header>
1474
            <table>
1475
              <caption>Table Caption</caption>
1476
              <thead>
1477
                <tr>
1478
                  <th>Table Heading 1</th>
1479
                  <th>Table Heading 2</th>
1480
                  <th>Table Heading 3</th>
1481
                  <th>Table Heading 4</th>
1482
                  <th>Table Heading 5</th>
1483
                </tr>
1484
              </thead>
1485
              <tfoot>
1486
                <tr>
1487
                  <th>Table Footer 1</th>
1488
                  <th>Table Footer 2</th>
1489
                  <th>Table Footer 3</th>
1490
                  <th>Table Footer 4</th>
1491
                  <th>Table Footer 5</th>
1492
                </tr>
1493
              </tfoot>
1494
              <tbody>
1495
                <tr>
1496
                  <td>Table Cell 1</td>
1497
                  <td>Table Cell 2</td>
1498
                  <td>Table Cell 3</td>
1499
                  <td>Table Cell 4</td>
1500
                  <td>Table Cell 5</td>
1501
                </tr>
1502
                <tr>
1503
                  <td>Table Cell 1</td>
1504
                  <td>Table Cell 2</td>
1505
                  <td>Table Cell 3</td>
1506
                  <td>Table Cell 4</td>
1507
                  <td>Table Cell 5</td>
1508
                </tr>
1509
                <tr>
1510
                  <td>Table Cell 1</td>
1511
                  <td>Table Cell 2</td>
1512
                  <td>Table Cell 3</td>
1513
                  <td>Table Cell 4</td>
1514
                  <td>Table Cell 5</td>
1515
                </tr>
1516
                <tr>
1517
                  <td>Table Cell 1</td>
1518
                  <td>Table Cell 2</td>
1519
                  <td>Table Cell 3</td>
1520
                  <td>Table Cell 4</td>
1521
                  <td>Table Cell 5</td>
1522
                </tr>
1523
              </tbody>
1524
            </table>
1525
            <footer><p><a href="#top">[Top]</a></p></footer>
1526
          </article>
1527
          <article id="text__code">
1528
            <header><h1>Code</h1></header>
1529
            <div>
1530
              <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
1531
              <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
1532
              <p><strong>Sample output:</strong> <samp>This is sample output from a computer program.</samp></p>
1533
              <h2>Pre-formatted text</h2>
1534
              <pre>P R E F O R M A T T E D T E X T
1535
  ! " # $ % &amp; ' ( ) * + , - . /
1536
  0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ?
1537
  @ A B C D E F G H I J K L M N O
1538
  P Q R S T U V W X Y Z [ \ ] ^ _
1539
  ` a b c d e f g h i j k l m n o
1540
  p q r s t u v w x y z { | } ~ </pre>
1541
            </div>
1542
            <footer><p><a href="#top">[Top]</a></p></footer>
1543
          </article>
1544
          <article id="text__inline">
1545
            <header><h1>Inline elements</h1></header>
1546
            <div>
1547
              <p><a href="#!">This is a text link</a>.</p>
1548
              <p><strong>Strong is used to indicate strong importance.</strong></p>
1549
              <p><em>This text has added emphasis.</em></p>
1550
              <p>The <b>b element</b> is stylistically different text from normal text, without any special importance.</p>
1551
              <p>The <i>i element</i> is text that is offset from the normal text.</p>
1552
              <p>The <u>u element</u> is text with an unarticulated, though explicitly rendered, non-textual annotation.</p>
1553
              <p><del>This text is deleted</del> and <ins>This text is inserted</ins>.</p>
1554
              <p><s>This text has a strikethrough</s>.</p>
1555
              <p>Superscript<sup>®</sup>.</p>
1556
              <p>Subscript for things like H<sub>2</sub>O.</p>
1557
              <p><small>This small text is small for for fine print, etc.</small></p>
1558
              <p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
1559
              <p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline quotation.</q></p>
1560
              <p><cite>This is a citation.</cite></p>
1561
              <p>The <dfn>dfn element</dfn> indicates a definition.</p>
1562
              <p>The <mark>mark element</mark> indicates a highlight.</p>
1563
              <p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
1564
              <p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
1565
            </div>
1566
            <footer><p><a href="#top">[Top]</a></p></footer>
1567
          </article>
1568
          <article id="text__comments">
1569
            <header><h1>HTML Comments</h1></header>
1570
            <div>
1571
              <p>There is comment here: <!--This comment should not be displayed--></p>
1572
              <p>There is a comment spanning multiple tags and lines below here.</p>
1573
              <!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
1574
              <p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
1575
              <p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
1576
            </div>
1577
            <footer><p><a href="#top">[Top]</a></p></footer>
1578
          </article>
1579
        </section>
1580
        <section id="embedded">
1581
          <header><h1>Embedded content</h1></header>
1582
          <article id="embedded__images">
1583
            <header><h2>Images</h2></header>
1584
            <div>
1585
              <h3>No <code>&lt;figure&gt;</code> element</h3>
1586
              <p><img src="http://placekitten.com/480/480" alt="Image alt text"></p>
1587
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, no <code>&lt;figcaption&gt;</code></h3>
1588
              <figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure>
1589
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaption&gt;</code></h3>
1590
              <figure>
1591
                <img src="http://placekitten.com/420/420" alt="Image alt text">
1592
                <figcaption>Here is a caption for this image.</figcaption>
1593
              </figure>
1594
            </div>
1595
            <footer><p><a href="#top">[Top]</a></p></footer>
1596
          </article>
1597
          <article id="embedded__audio">
1598
            <header><h2>Audio</h2></header>
1599
            <div><audio controls="">audio</audio></div>
1600
            <footer><p><a href="#top">[Top]</a></p></footer>
1601
          </article>
1602
          <article id="embedded__video">
1603
            <header><h2>Video</h2></header>
1604
            <div><video controls="">video</video></div>
1605
            <footer><p><a href="#top">[Top]</a></p></footer>
1606
          </article>
1607
          <article id="embedded__canvas">
1608
            <header><h2>Canvas</h2></header>
1609
            <div><canvas>canvas</canvas></div>
1610
            <footer><p><a href="#top">[Top]</a></p></footer>
1611
          </article>
1612
          <article id="embedded__meter">
1613
            <header><h2>Meter</h2></header>
1614
            <div><meter value="2" min="0" max="10">2 out of 10</meter></div>
1615
            <footer><p><a href="#top">[Top]</a></p></footer>
1616
          </article>
1617
          <article id="embedded__progress">
1618
            <header><h2>Progress</h2></header>
1619
            <div><progress>progress</progress></div>
1620
            <footer><p><a href="#top">[Top]</a></p></footer>
1621
          </article>
1622
          <article id="embedded__svg">
1623
            <header><h2>Inline SVG</h2></header>
1624
            <div><svg width="100px" height="100px"><circle cx="100" cy="100" r="100" fill="#1fa3ec"></circle></svg></div>
1625
            <footer><p><a href="#top">[Top]</a></p></footer>
1626
          </article>
1627
          <article id="embedded__iframe">
1628
            <header><h2>IFrame</h2></header>
1629
            <div><iframe src="index.html" height="300"></iframe></div>
1630
            <footer><p><a href="#top">[Top]</a></p></footer>
1631
          </article>
1632
        </section>
1633
        <section id="text">
1634
          <header><h1>Text</h1></header>
1635
          <article id="text__headings">
1636
            <header>
1637
              <h1>Headings</h1>
1638
            </header>
1639
            <div>
1640
              <h1>Heading 1</h1>
1641
              <h2>Heading 2</h2>
1642
              <h3>Heading 3</h3>
1643
              <h4>Heading 4</h4>
1644
              <h5>Heading 5</h5>
1645
              <h6>Heading 6</h6>
1646
            </div>
1647
            <footer><p><a href="#top">[Top]</a></p></footer>
1648
          </article>
1649
          <article id="text__paragraphs">
1650
            <header><h1>Paragraphs</h1></header>
1651
            <div>
1652
              <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
1653
            </div>
1654
            <footer><p><a href="#top">[Top]</a></p></footer>
1655
          </article>
1656
          <article id="text__blockquotes">
1657
            <header><h1>Blockquotes</h1></header>
1658
            <div>
1659
              <blockquote>
1660
                <p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
1661
                <p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
1662
                <cite><a href="#!">Said no one, ever.</a></cite>
1663
              </blockquote>
1664
            </div>
1665
            <footer><p><a href="#top">[Top]</a></p></footer>
1666
          </article>
1667
          <article id="text__lists">
1668
            <header><h1>Lists</h1></header>
1669
            <div>
1670
              <h3>Definition list</h3>
1671
              <dl>
1672
                <dt>Definition List Title</dt>
1673
                <dd>This is a definition list division.</dd>
1674
              </dl>
1675
              <h3>Ordered List</h3>
1676
              <ol>
1677
                <li>List Item 1</li>
1678
                <li>List Item 2</li>
1679
                <li>List Item 3</li>
1680
              </ol>
1681
              <h3>Unordered List</h3>
1682
              <ul>
1683
                <li>List Item 1</li>
1684
                <li>List Item 2</li>
1685
                <li>List Item 3</li>
1686
              </ul>
1687
            </div>
1688
            <footer><p><a href="#top">[Top]</a></p></footer>
1689
          </article>
1690
          <article id="text__hr">
1691
            <header><h1>Horizontal rules</h1></header>
1692
            <div>
1693
              <hr>
1694
            </div>
1695
            <footer><p><a href="#top">[Top]</a></p></footer>
1696
          </article>
1697
          <article id="text__tables">
1698
            <header><h1>Tabular data</h1></header>
1699
            <table>
1700
              <caption>Table Caption</caption>
1701
              <thead>
1702
                <tr>
1703
                  <th>Table Heading 1</th>
1704
                  <th>Table Heading 2</th>
1705
                  <th>Table Heading 3</th>
1706
                  <th>Table Heading 4</th>
1707
                  <th>Table Heading 5</th>
1708
                </tr>
1709
              </thead>
1710
              <tfoot>
1711
                <tr>
1712
                  <th>Table Footer 1</th>
1713
                  <th>Table Footer 2</th>
1714
                  <th>Table Footer 3</th>
1715
                  <th>Table Footer 4</th>
1716
                  <th>Table Footer 5</th>
1717
                </tr>
1718
              </tfoot>
1719
              <tbody>
1720
                <tr>
1721
                  <td>Table Cell 1</td>
1722
                  <td>Table Cell 2</td>
1723
                  <td>Table Cell 3</td>
1724
                  <td>Table Cell 4</td>
1725
                  <td>Table Cell 5</td>
1726
                </tr>
1727
                <tr>
1728
                  <td>Table Cell 1</td>
1729
                  <td>Table Cell 2</td>
1730
                  <td>Table Cell 3</td>
1731
                  <td>Table Cell 4</td>
1732
                  <td>Table Cell 5</td>
1733
                </tr>
1734
                <tr>
1735
                  <td>Table Cell 1</td>
1736
                  <td>Table Cell 2</td>
1737
                  <td>Table Cell 3</td>
1738
                  <td>Table Cell 4</td>
1739
                  <td>Table Cell 5</td>
1740
                </tr>
1741
                <tr>
1742
                  <td>Table Cell 1</td>
1743
                  <td>Table Cell 2</td>
1744
                  <td>Table Cell 3</td>
1745
                  <td>Table Cell 4</td>
1746
                  <td>Table Cell 5</td>
1747
                </tr>
1748
              </tbody>
1749
            </table>
1750
            <footer><p><a href="#top">[Top]</a></p></footer>
1751
          </article>
1752
          <article id="text__code">
1753
            <header><h1>Code</h1></header>
1754
            <div>
1755
              <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
1756
              <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
1757
              <p><strong>Sample output:</strong> <samp>This is sample output from a computer program.</samp></p>
1758
              <h2>Pre-formatted text</h2>
1759
              <pre>P R E F O R M A T T E D T E X T
1760
  ! " # $ % &amp; ' ( ) * + , - . /
1761
  0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ?
1762
  @ A B C D E F G H I J K L M N O
1763
  P Q R S T U V W X Y Z [ \ ] ^ _
1764
  ` a b c d e f g h i j k l m n o
1765
  p q r s t u v w x y z { | } ~ </pre>
1766
            </div>
1767
            <footer><p><a href="#top">[Top]</a></p></footer>
1768
          </article>
1769
          <article id="text__inline">
1770
            <header><h1>Inline elements</h1></header>
1771
            <div>
1772
              <p><a href="#!">This is a text link</a>.</p>
1773
              <p><strong>Strong is used to indicate strong importance.</strong></p>
1774
              <p><em>This text has added emphasis.</em></p>
1775
              <p>The <b>b element</b> is stylistically different text from normal text, without any special importance.</p>
1776
              <p>The <i>i element</i> is text that is offset from the normal text.</p>
1777
              <p>The <u>u element</u> is text with an unarticulated, though explicitly rendered, non-textual annotation.</p>
1778
              <p><del>This text is deleted</del> and <ins>This text is inserted</ins>.</p>
1779
              <p><s>This text has a strikethrough</s>.</p>
1780
              <p>Superscript<sup>®</sup>.</p>
1781
              <p>Subscript for things like H<sub>2</sub>O.</p>
1782
              <p><small>This small text is small for for fine print, etc.</small></p>
1783
              <p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
1784
              <p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline quotation.</q></p>
1785
              <p><cite>This is a citation.</cite></p>
1786
              <p>The <dfn>dfn element</dfn> indicates a definition.</p>
1787
              <p>The <mark>mark element</mark> indicates a highlight.</p>
1788
              <p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
1789
              <p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
1790
            </div>
1791
            <footer><p><a href="#top">[Top]</a></p></footer>
1792
          </article>
1793
          <article id="text__comments">
1794
            <header><h1>HTML Comments</h1></header>
1795
            <div>
1796
              <p>There is comment here: <!--This comment should not be displayed--></p>
1797
              <p>There is a comment spanning multiple tags and lines below here.</p>
1798
              <!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
1799
              <p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
1800
              <p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
1801
            </div>
1802
            <footer><p><a href="#top">[Top]</a></p></footer>
1803
          </article>
1804
        </section>
1805
        <section id="embedded">
1806
          <header><h1>Embedded content</h1></header>
1807
          <article id="embedded__images">
1808
            <header><h2>Images</h2></header>
1809
            <div>
1810
              <h3>No <code>&lt;figure&gt;</code> element</h3>
1811
              <p><img src="http://placekitten.com/480/480" alt="Image alt text"></p>
1812
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, no <code>&lt;figcaption&gt;</code></h3>
1813
              <figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure>
1814
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaption&gt;</code></h3>
1815
              <figure>
1816
                <img src="http://placekitten.com/420/420" alt="Image alt text">
1817
                <figcaption>Here is a caption for this image.</figcaption>
1818
              </figure>
1819
            </div>
1820
            <footer><p><a href="#top">[Top]</a></p></footer>
1821
          </article>
1822
          <article id="embedded__audio">
1823
            <header><h2>Audio</h2></header>
1824
            <div><audio controls="">audio</audio></div>
1825
            <footer><p><a href="#top">[Top]</a></p></footer>
1826
          </article>
1827
          <article id="embedded__video">
1828
            <header><h2>Video</h2></header>
1829
            <div><video controls="">video</video></div>
1830
            <footer><p><a href="#top">[Top]</a></p></footer>
1831
          </article>
1832
          <article id="embedded__canvas">
1833
            <header><h2>Canvas</h2></header>
1834
            <div><canvas>canvas</canvas></div>
1835
            <footer><p><a href="#top">[Top]</a></p></footer>
1836
          </article>
1837
          <article id="embedded__meter">
1838
            <header><h2>Meter</h2></header>
1839
            <div><meter value="2" min="0" max="10">2 out of 10</meter></div>
1840
            <footer><p><a href="#top">[Top]</a></p></footer>
1841
          </article>
1842
          <article id="embedded__progress">
1843
            <header><h2>Progress</h2></header>
1844
            <div><progress>progress</progress></div>
1845
            <footer><p><a href="#top">[Top]</a></p></footer>
1846
          </article>
1847
          <article id="embedded__svg">
1848
            <header><h2>Inline SVG</h2></header>
1849
            <div><svg width="100px" height="100px"><circle cx="100" cy="100" r="100" fill="#1fa3ec"></circle></svg></div>
1850
            <footer><p><a href="#top">[Top]</a></p></footer>
1851
          </article>
1852
          <article id="embedded__iframe">
1853
            <header><h2>IFrame</h2></header>
1854
            <div><iframe src="index.html" height="300"></iframe></div>
1855
            <footer><p><a href="#top">[Top]</a></p></footer>
1856
          </article>
1857
        </section>
1858
        <section id="text">
1859
          <header><h1>Text</h1></header>
1860
          <article id="text__headings">
1861
            <header>
1862
              <h1>Headings</h1>
1863
            </header>
1864
            <div>
1865
              <h1>Heading 1</h1>
1866
              <h2>Heading 2</h2>
1867
              <h3>Heading 3</h3>
1868
              <h4>Heading 4</h4>
1869
              <h5>Heading 5</h5>
1870
              <h6>Heading 6</h6>
1871
            </div>
1872
            <footer><p><a href="#top">[Top]</a></p></footer>
1873
          </article>
1874
          <article id="text__paragraphs">
1875
            <header><h1>Paragraphs</h1></header>
1876
            <div>
1877
              <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
1878
            </div>
1879
            <footer><p><a href="#top">[Top]</a></p></footer>
1880
          </article>
1881
          <article id="text__blockquotes">
1882
            <header><h1>Blockquotes</h1></header>
1883
            <div>
1884
              <blockquote>
1885
                <p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
1886
                <p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
1887
                <cite><a href="#!">Said no one, ever.</a></cite>
1888
              </blockquote>
1889
            </div>
1890
            <footer><p><a href="#top">[Top]</a></p></footer>
1891
          </article>
1892
          <article id="text__lists">
1893
            <header><h1>Lists</h1></header>
1894
            <div>
1895
              <h3>Definition list</h3>
1896
              <dl>
1897
                <dt>Definition List Title</dt>
1898
                <dd>This is a definition list division.</dd>
1899
              </dl>
1900
              <h3>Ordered List</h3>
1901
              <ol>
1902
                <li>List Item 1</li>
1903
                <li>List Item 2</li>
1904
                <li>List Item 3</li>
1905
              </ol>
1906
              <h3>Unordered List</h3>
1907
              <ul>
1908
                <li>List Item 1</li>
1909
                <li>List Item 2</li>
1910
                <li>List Item 3</li>
1911
              </ul>
1912
            </div>
1913
            <footer><p><a href="#top">[Top]</a></p></footer>
1914
          </article>
1915
          <article id="text__hr">
1916
            <header><h1>Horizontal rules</h1></header>
1917
            <div>
1918
              <hr>
1919
            </div>
1920
            <footer><p><a href="#top">[Top]</a></p></footer>
1921
          </article>
1922
          <article id="text__tables">
1923
            <header><h1>Tabular data</h1></header>
1924
            <table>
1925
              <caption>Table Caption</caption>
1926
              <thead>
1927
                <tr>
1928
                  <th>Table Heading 1</th>
1929
                  <th>Table Heading 2</th>
1930
                  <th>Table Heading 3</th>
1931
                  <th>Table Heading 4</th>
1932
                  <th>Table Heading 5</th>
1933
                </tr>
1934
              </thead>
1935
              <tfoot>
1936
                <tr>
1937
                  <th>Table Footer 1</th>
1938
                  <th>Table Footer 2</th>
1939
                  <th>Table Footer 3</th>
1940
                  <th>Table Footer 4</th>
1941
                  <th>Table Footer 5</th>
1942
                </tr>
1943
              </tfoot>
1944
              <tbody>
1945
                <tr>
1946
                  <td>Table Cell 1</td>
1947
                  <td>Table Cell 2</td>
1948
                  <td>Table Cell 3</td>
1949
                  <td>Table Cell 4</td>
1950
                  <td>Table Cell 5</td>
1951
                </tr>
1952
                <tr>
1953
                  <td>Table Cell 1</td>
1954
                  <td>Table Cell 2</td>
1955
                  <td>Table Cell 3</td>
1956
                  <td>Table Cell 4</td>
1957
                  <td>Table Cell 5</td>
1958
                </tr>
1959
                <tr>
1960
                  <td>Table Cell 1</td>
1961
                  <td>Table Cell 2</td>
1962
                  <td>Table Cell 3</td>
1963
                  <td>Table Cell 4</td>
1964
                  <td>Table Cell 5</td>
1965
                </tr>
1966
                <tr>
1967
                  <td>Table Cell 1</td>
1968
                  <td>Table Cell 2</td>
1969
                  <td>Table Cell 3</td>
1970
                  <td>Table Cell 4</td>
1971
                  <td>Table Cell 5</td>
1972
                </tr>
1973
              </tbody>
1974
            </table>
1975
            <footer><p><a href="#top">[Top]</a></p></footer>
1976
          </article>
1977
          <article id="text__code">
1978
            <header><h1>Code</h1></header>
1979
            <div>
1980
              <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
1981
              <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
1982
              <p><strong>Sample output:</strong> <samp>This is sample output from a computer program.</samp></p>
1983
              <h2>Pre-formatted text</h2>
1984
              <pre>P R E F O R M A T T E D T E X T
1985
  ! " # $ % &amp; ' ( ) * + , - . /
1986
  0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ?
1987
  @ A B C D E F G H I J K L M N O
1988
  P Q R S T U V W X Y Z [ \ ] ^ _
1989
  ` a b c d e f g h i j k l m n o
1990
  p q r s t u v w x y z { | } ~ </pre>
1991
            </div>
1992
            <footer><p><a href="#top">[Top]</a></p></footer>
1993
          </article>
1994
          <article id="text__inline">
1995
            <header><h1>Inline elements</h1></header>
1996
            <div>
1997
              <p><a href="#!">This is a text link</a>.</p>
1998
              <p><strong>Strong is used to indicate strong importance.</strong></p>
1999
              <p><em>This text has added emphasis.</em></p>
2000
              <p>The <b>b element</b> is stylistically different text from normal text, without any special importance.</p>
2001
              <p>The <i>i element</i> is text that is offset from the normal text.</p>
2002
              <p>The <u>u element</u> is text with an unarticulated, though explicitly rendered, non-textual annotation.</p>
2003
              <p><del>This text is deleted</del> and <ins>This text is inserted</ins>.</p>
2004
              <p><s>This text has a strikethrough</s>.</p>
2005
              <p>Superscript<sup>®</sup>.</p>
2006
              <p>Subscript for things like H<sub>2</sub>O.</p>
2007
              <p><small>This small text is small for for fine print, etc.</small></p>
2008
              <p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
2009
              <p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline quotation.</q></p>
2010
              <p><cite>This is a citation.</cite></p>
2011
              <p>The <dfn>dfn element</dfn> indicates a definition.</p>
2012
              <p>The <mark>mark element</mark> indicates a highlight.</p>
2013
              <p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
2014
              <p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
2015
            </div>
2016
            <footer><p><a href="#top">[Top]</a></p></footer>
2017
          </article>
2018
          <article id="text__comments">
2019
            <header><h1>HTML Comments</h1></header>
2020
            <div>
2021
              <p>There is comment here: <!--This comment should not be displayed--></p>
2022
              <p>There is a comment spanning multiple tags and lines below here.</p>
2023
              <!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
2024
              <p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
2025
              <p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
2026
            </div>
2027
            <footer><p><a href="#top">[Top]</a></p></footer>
2028
          </article>
2029
        </section>
2030
        <section id="embedded">
2031
          <header><h1>Embedded content</h1></header>
2032
          <article id="embedded__images">
2033
            <header><h2>Images</h2></header>
2034
            <div>
2035
              <h3>No <code>&lt;figure&gt;</code> element</h3>
2036
              <p><img src="http://placekitten.com/480/480" alt="Image alt text"></p>
2037
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, no <code>&lt;figcaption&gt;</code></h3>
2038
              <figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure>
2039
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaption&gt;</code></h3>
2040
              <figure>
2041
                <img src="http://placekitten.com/420/420" alt="Image alt text">
2042
                <figcaption>Here is a caption for this image.</figcaption>
2043
              </figure>
2044
            </div>
2045
            <footer><p><a href="#top">[Top]</a></p></footer>
2046
          </article>
2047
          <article id="embedded__audio">
2048
            <header><h2>Audio</h2></header>
2049
            <div><audio controls="">audio</audio></div>
2050
            <footer><p><a href="#top">[Top]</a></p></footer>
2051
          </article>
2052
          <article id="embedded__video">
2053
            <header><h2>Video</h2></header>
2054
            <div><video controls="">video</video></div>
2055
            <footer><p><a href="#top">[Top]</a></p></footer>
2056
          </article>
2057
          <article id="embedded__canvas">
2058
            <header><h2>Canvas</h2></header>
2059
            <div><canvas>canvas</canvas></div>
2060
            <footer><p><a href="#top">[Top]</a></p></footer>
2061
          </article>
2062
          <article id="embedded__meter">
2063
            <header><h2>Meter</h2></header>
2064
            <div><meter value="2" min="0" max="10">2 out of 10</meter></div>
2065
            <footer><p><a href="#top">[Top]</a></p></footer>
2066
          </article>
2067
          <article id="embedded__progress">
2068
            <header><h2>Progress</h2></header>
2069
            <div><progress>progress</progress></div>
2070
            <footer><p><a href="#top">[Top]</a></p></footer>
2071
          </article>
2072
          <article id="embedded__svg">
2073
            <header><h2>Inline SVG</h2></header>
2074
            <div><svg width="100px" height="100px"><circle cx="100" cy="100" r="100" fill="#1fa3ec"></circle></svg></div>
2075
            <footer><p><a href="#top">[Top]</a></p></footer>
2076
          </article>
2077
          <article id="embedded__iframe">
2078
            <header><h2>IFrame</h2></header>
2079
            <div><iframe src="index.html" height="300"></iframe></div>
2080
            <footer><p><a href="#top">[Top]</a></p></footer>
2081
          </article>
2082
        </section>
2083
        <section id="text">
2084
          <header><h1>Text</h1></header>
2085
          <article id="text__headings">
2086
            <header>
2087
              <h1>Headings</h1>
2088
            </header>
2089
            <div>
2090
              <h1>Heading 1</h1>
2091
              <h2>Heading 2</h2>
2092
              <h3>Heading 3</h3>
2093
              <h4>Heading 4</h4>
2094
              <h5>Heading 5</h5>
2095
              <h6>Heading 6</h6>
2096
            </div>
2097
            <footer><p><a href="#top">[Top]</a></p></footer>
2098
          </article>
2099
          <article id="text__paragraphs">
2100
            <header><h1>Paragraphs</h1></header>
2101
            <div>
2102
              <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
2103
            </div>
2104
            <footer><p><a href="#top">[Top]</a></p></footer>
2105
          </article>
2106
          <article id="text__blockquotes">
2107
            <header><h1>Blockquotes</h1></header>
2108
            <div>
2109
              <blockquote>
2110
                <p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
2111
                <p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
2112
                <cite><a href="#!">Said no one, ever.</a></cite>
2113
              </blockquote>
2114
            </div>
2115
            <footer><p><a href="#top">[Top]</a></p></footer>
2116
          </article>
2117
          <article id="text__lists">
2118
            <header><h1>Lists</h1></header>
2119
            <div>
2120
              <h3>Definition list</h3>
2121
              <dl>
2122
                <dt>Definition List Title</dt>
2123
                <dd>This is a definition list division.</dd>
2124
              </dl>
2125
              <h3>Ordered List</h3>
2126
              <ol>
2127
                <li>List Item 1</li>
2128
                <li>List Item 2</li>
2129
                <li>List Item 3</li>
2130
              </ol>
2131
              <h3>Unordered List</h3>
2132
              <ul>
2133
                <li>List Item 1</li>
2134
                <li>List Item 2</li>
2135
                <li>List Item 3</li>
2136
              </ul>
2137
            </div>
2138
            <footer><p><a href="#top">[Top]</a></p></footer>
2139
          </article>
2140
          <article id="text__hr">
2141
            <header><h1>Horizontal rules</h1></header>
2142
            <div>
2143
              <hr>
2144
            </div>
2145
            <footer><p><a href="#top">[Top]</a></p></footer>
2146
          </article>
2147
          <article id="text__tables">
2148
            <header><h1>Tabular data</h1></header>
2149
            <table>
2150
              <caption>Table Caption</caption>
2151
              <thead>
2152
                <tr>
2153
                  <th>Table Heading 1</th>
2154
                  <th>Table Heading 2</th>
2155
                  <th>Table Heading 3</th>
2156
                  <th>Table Heading 4</th>
2157
                  <th>Table Heading 5</th>
2158
                </tr>
2159
              </thead>
2160
              <tfoot>
2161
                <tr>
2162
                  <th>Table Footer 1</th>
2163
                  <th>Table Footer 2</th>
2164
                  <th>Table Footer 3</th>
2165
                  <th>Table Footer 4</th>
2166
                  <th>Table Footer 5</th>
2167
                </tr>
2168
              </tfoot>
2169
              <tbody>
2170
                <tr>
2171
                  <td>Table Cell 1</td>
2172
                  <td>Table Cell 2</td>
2173
                  <td>Table Cell 3</td>
2174
                  <td>Table Cell 4</td>
2175
                  <td>Table Cell 5</td>
2176
                </tr>
2177
                <tr>
2178
                  <td>Table Cell 1</td>
2179
                  <td>Table Cell 2</td>
2180
                  <td>Table Cell 3</td>
2181
                  <td>Table Cell 4</td>
2182
                  <td>Table Cell 5</td>
2183
                </tr>
2184
                <tr>
2185
                  <td>Table Cell 1</td>
2186
                  <td>Table Cell 2</td>
2187
                  <td>Table Cell 3</td>
2188
                  <td>Table Cell 4</td>
2189
                  <td>Table Cell 5</td>
2190
                </tr>
2191
                <tr>
2192
                  <td>Table Cell 1</td>
2193
                  <td>Table Cell 2</td>
2194
                  <td>Table Cell 3</td>
2195
                  <td>Table Cell 4</td>
2196
                  <td>Table Cell 5</td>
2197
                </tr>
2198
              </tbody>
2199
            </table>
2200
            <footer><p><a href="#top">[Top]</a></p></footer>
2201
          </article>
2202
          <article id="text__code">
2203
            <header><h1>Code</h1></header>
2204
            <div>
2205
              <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
2206
              <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
2207
              <p><strong>Sample output:</strong> <samp>This is sample output from a computer program.</samp></p>
2208
              <h2>Pre-formatted text</h2>
2209
              <pre>P R E F O R M A T T E D T E X T
2210
  ! " # $ % &amp; ' ( ) * + , - . /
2211
  0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ?
2212
  @ A B C D E F G H I J K L M N O
2213
  P Q R S T U V W X Y Z [ \ ] ^ _
2214
  ` a b c d e f g h i j k l m n o
2215
  p q r s t u v w x y z { | } ~ </pre>
2216
            </div>
2217
            <footer><p><a href="#top">[Top]</a></p></footer>
2218
          </article>
2219
          <article id="text__inline">
2220
            <header><h1>Inline elements</h1></header>
2221
            <div>
2222
              <p><a href="#!">This is a text link</a>.</p>
2223
              <p><strong>Strong is used to indicate strong importance.</strong></p>
2224
              <p><em>This text has added emphasis.</em></p>
2225
              <p>The <b>b element</b> is stylistically different text from normal text, without any special importance.</p>
2226
              <p>The <i>i element</i> is text that is offset from the normal text.</p>
2227
              <p>The <u>u element</u> is text with an unarticulated, though explicitly rendered, non-textual annotation.</p>
2228
              <p><del>This text is deleted</del> and <ins>This text is inserted</ins>.</p>
2229
              <p><s>This text has a strikethrough</s>.</p>
2230
              <p>Superscript<sup>®</sup>.</p>
2231
              <p>Subscript for things like H<sub>2</sub>O.</p>
2232
              <p><small>This small text is small for for fine print, etc.</small></p>
2233
              <p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
2234
              <p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline quotation.</q></p>
2235
              <p><cite>This is a citation.</cite></p>
2236
              <p>The <dfn>dfn element</dfn> indicates a definition.</p>
2237
              <p>The <mark>mark element</mark> indicates a highlight.</p>
2238
              <p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
2239
              <p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
2240
            </div>
2241
            <footer><p><a href="#top">[Top]</a></p></footer>
2242
          </article>
2243
          <article id="text__comments">
2244
            <header><h1>HTML Comments</h1></header>
2245
            <div>
2246
              <p>There is comment here: <!--This comment should not be displayed--></p>
2247
              <p>There is a comment spanning multiple tags and lines below here.</p>
2248
              <!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
2249
              <p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
2250
              <p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
2251
            </div>
2252
            <footer><p><a href="#top">[Top]</a></p></footer>
2253
          </article>
2254
        </section>
2255
        <section id="embedded">
2256
          <header><h1>Embedded content</h1></header>
2257
          <article id="embedded__images">
2258
            <header><h2>Images</h2></header>
2259
            <div>
2260
              <h3>No <code>&lt;figure&gt;</code> element</h3>
2261
              <p><img src="http://placekitten.com/480/480" alt="Image alt text"></p>
2262
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, no <code>&lt;figcaption&gt;</code></h3>
2263
              <figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure>
2264
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaption&gt;</code></h3>
2265
              <figure>
2266
                <img src="http://placekitten.com/420/420" alt="Image alt text">
2267
                <figcaption>Here is a caption for this image.</figcaption>
2268
              </figure>
2269
            </div>
2270
            <footer><p><a href="#top">[Top]</a></p></footer>
2271
          </article>
2272
          <article id="embedded__audio">
2273
            <header><h2>Audio</h2></header>
2274
            <div><audio controls="">audio</audio></div>
2275
            <footer><p><a href="#top">[Top]</a></p></footer>
2276
          </article>
2277
          <article id="embedded__video">
2278
            <header><h2>Video</h2></header>
2279
            <div><video controls="">video</video></div>
2280
            <footer><p><a href="#top">[Top]</a></p></footer>
2281
          </article>
2282
          <article id="embedded__canvas">
2283
            <header><h2>Canvas</h2></header>
2284
            <div><canvas>canvas</canvas></div>
2285
            <footer><p><a href="#top">[Top]</a></p></footer>
2286
          </article>
2287
          <article id="embedded__meter">
2288
            <header><h2>Meter</h2></header>
2289
            <div><meter value="2" min="0" max="10">2 out of 10</meter></div>
2290
            <footer><p><a href="#top">[Top]</a></p></footer>
2291
          </article>
2292
          <article id="embedded__progress">
2293
            <header><h2>Progress</h2></header>
2294
            <div><progress>progress</progress></div>
2295
            <footer><p><a href="#top">[Top]</a></p></footer>
2296
          </article>
2297
          <article id="embedded__svg">
2298
            <header><h2>Inline SVG</h2></header>
2299
            <div><svg width="100px" height="100px"><circle cx="100" cy="100" r="100" fill="#1fa3ec"></circle></svg></div>
2300
            <footer><p><a href="#top">[Top]</a></p></footer>
2301
          </article>
2302
          <article id="embedded__iframe">
2303
            <header><h2>IFrame</h2></header>
2304
            <div><iframe src="index.html" height="300"></iframe></div>
2305
            <footer><p><a href="#top">[Top]</a></p></footer>
2306
          </article>
2307
        </section>
2308
        <section id="text">
2309
          <header><h1>Text</h1></header>
2310
          <article id="text__headings">
2311
            <header>
2312
              <h1>Headings</h1>
2313
            </header>
2314
            <div>
2315
              <h1>Heading 1</h1>
2316
              <h2>Heading 2</h2>
2317
              <h3>Heading 3</h3>
2318
              <h4>Heading 4</h4>
2319
              <h5>Heading 5</h5>
2320
              <h6>Heading 6</h6>
2321
            </div>
2322
            <footer><p><a href="#top">[Top]</a></p></footer>
2323
          </article>
2324
          <article id="text__paragraphs">
2325
            <header><h1>Paragraphs</h1></header>
2326
            <div>
2327
              <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
2328
            </div>
2329
            <footer><p><a href="#top">[Top]</a></p></footer>
2330
          </article>
2331
          <article id="text__blockquotes">
2332
            <header><h1>Blockquotes</h1></header>
2333
            <div>
2334
              <blockquote>
2335
                <p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
2336
                <p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
2337
                <cite><a href="#!">Said no one, ever.</a></cite>
2338
              </blockquote>
2339
            </div>
2340
            <footer><p><a href="#top">[Top]</a></p></footer>
2341
          </article>
2342
          <article id="text__lists">
2343
            <header><h1>Lists</h1></header>
2344
            <div>
2345
              <h3>Definition list</h3>
2346
              <dl>
2347
                <dt>Definition List Title</dt>
2348
                <dd>This is a definition list division.</dd>
2349
              </dl>
2350
              <h3>Ordered List</h3>
2351
              <ol>
2352
                <li>List Item 1</li>
2353
                <li>List Item 2</li>
2354
                <li>List Item 3</li>
2355
              </ol>
2356
              <h3>Unordered List</h3>
2357
              <ul>
2358
                <li>List Item 1</li>
2359
                <li>List Item 2</li>
2360
                <li>List Item 3</li>
2361
              </ul>
2362
            </div>
2363
            <footer><p><a href="#top">[Top]</a></p></footer>
2364
          </article>
2365
          <article id="text__hr">
2366
            <header><h1>Horizontal rules</h1></header>
2367
            <div>
2368
              <hr>
2369
            </div>
2370
            <footer><p><a href="#top">[Top]</a></p></footer>
2371
          </article>
2372
          <article id="text__tables">
2373
            <header><h1>Tabular data</h1></header>
2374
            <table>
2375
              <caption>Table Caption</caption>
2376
              <thead>
2377
                <tr>
2378
                  <th>Table Heading 1</th>
2379
                  <th>Table Heading 2</th>
2380
                  <th>Table Heading 3</th>
2381
                  <th>Table Heading 4</th>
2382
                  <th>Table Heading 5</th>
2383
                </tr>
2384
              </thead>
2385
              <tfoot>
2386
                <tr>
2387
                  <th>Table Footer 1</th>
2388
                  <th>Table Footer 2</th>
2389
                  <th>Table Footer 3</th>
2390
                  <th>Table Footer 4</th>
2391
                  <th>Table Footer 5</th>
2392
                </tr>
2393
              </tfoot>
2394
              <tbody>
2395
                <tr>
2396
                  <td>Table Cell 1</td>
2397
                  <td>Table Cell 2</td>
2398
                  <td>Table Cell 3</td>
2399
                  <td>Table Cell 4</td>
2400
                  <td>Table Cell 5</td>
2401
                </tr>
2402
                <tr>
2403
                  <td>Table Cell 1</td>
2404
                  <td>Table Cell 2</td>
2405
                  <td>Table Cell 3</td>
2406
                  <td>Table Cell 4</td>
2407
                  <td>Table Cell 5</td>
2408
                </tr>
2409
                <tr>
2410
                  <td>Table Cell 1</td>
2411
                  <td>Table Cell 2</td>
2412
                  <td>Table Cell 3</td>
2413
                  <td>Table Cell 4</td>
2414
                  <td>Table Cell 5</td>
2415
                </tr>
2416
                <tr>
2417
                  <td>Table Cell 1</td>
2418
                  <td>Table Cell 2</td>
2419
                  <td>Table Cell 3</td>
2420
                  <td>Table Cell 4</td>
2421
                  <td>Table Cell 5</td>
2422
                </tr>
2423
              </tbody>
2424
            </table>
2425
            <footer><p><a href="#top">[Top]</a></p></footer>
2426
          </article>
2427
          <article id="text__code">
2428
            <header><h1>Code</h1></header>
2429
            <div>
2430
              <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
2431
              <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
2432
              <p><strong>Sample output:</strong> <samp>This is sample output from a computer program.</samp></p>
2433
              <h2>Pre-formatted text</h2>
2434
              <pre>P R E F O R M A T T E D T E X T
2435
  ! " # $ % &amp; ' ( ) * + , - . /
2436
  0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ?
2437
  @ A B C D E F G H I J K L M N O
2438
  P Q R S T U V W X Y Z [ \ ] ^ _
2439
  ` a b c d e f g h i j k l m n o
2440
  p q r s t u v w x y z { | } ~ </pre>
2441
            </div>
2442
            <footer><p><a href="#top">[Top]</a></p></footer>
2443
          </article>
2444
          <article id="text__inline">
2445
            <header><h1>Inline elements</h1></header>
2446
            <div>
2447
              <p><a href="#!">This is a text link</a>.</p>
2448
              <p><strong>Strong is used to indicate strong importance.</strong></p>
2449
              <p><em>This text has added emphasis.</em></p>
2450
              <p>The <b>b element</b> is stylistically different text from normal text, without any special importance.</p>
2451
              <p>The <i>i element</i> is text that is offset from the normal text.</p>
2452
              <p>The <u>u element</u> is text with an unarticulated, though explicitly rendered, non-textual annotation.</p>
2453
              <p><del>This text is deleted</del> and <ins>This text is inserted</ins>.</p>
2454
              <p><s>This text has a strikethrough</s>.</p>
2455
              <p>Superscript<sup>®</sup>.</p>
2456
              <p>Subscript for things like H<sub>2</sub>O.</p>
2457
              <p><small>This small text is small for for fine print, etc.</small></p>
2458
              <p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
2459
              <p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline quotation.</q></p>
2460
              <p><cite>This is a citation.</cite></p>
2461
              <p>The <dfn>dfn element</dfn> indicates a definition.</p>
2462
              <p>The <mark>mark element</mark> indicates a highlight.</p>
2463
              <p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
2464
              <p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
2465
            </div>
2466
            <footer><p><a href="#top">[Top]</a></p></footer>
2467
          </article>
2468
          <article id="text__comments">
2469
            <header><h1>HTML Comments</h1></header>
2470
            <div>
2471
              <p>There is comment here: <!--This comment should not be displayed--></p>
2472
              <p>There is a comment spanning multiple tags and lines below here.</p>
2473
              <!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
2474
              <p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
2475
              <p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
2476
            </div>
2477
            <footer><p><a href="#top">[Top]</a></p></footer>
2478
          </article>
2479
        </section>
2480
        <section id="embedded">
2481
          <header><h1>Embedded content</h1></header>
2482
          <article id="embedded__images">
2483
            <header><h2>Images</h2></header>
2484
            <div>
2485
              <h3>No <code>&lt;figure&gt;</code> element</h3>
2486
              <p><img src="http://placekitten.com/480/480" alt="Image alt text"></p>
2487
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, no <code>&lt;figcaption&gt;</code></h3>
2488
              <figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure>
2489
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaption&gt;</code></h3>
2490
              <figure>
2491
                <img src="http://placekitten.com/420/420" alt="Image alt text">
2492
                <figcaption>Here is a caption for this image.</figcaption>
2493
              </figure>
2494
            </div>
2495
            <footer><p><a href="#top">[Top]</a></p></footer>
2496
          </article>
2497
          <article id="embedded__audio">
2498
            <header><h2>Audio</h2></header>
2499
            <div><audio controls="">audio</audio></div>
2500
            <footer><p><a href="#top">[Top]</a></p></footer>
2501
          </article>
2502
          <article id="embedded__video">
2503
            <header><h2>Video</h2></header>
2504
            <div><video controls="">video</video></div>
2505
            <footer><p><a href="#top">[Top]</a></p></footer>
2506
          </article>
2507
          <article id="embedded__canvas">
2508
            <header><h2>Canvas</h2></header>
2509
            <div><canvas>canvas</canvas></div>
2510
            <footer><p><a href="#top">[Top]</a></p></footer>
2511
          </article>
2512
          <article id="embedded__meter">
2513
            <header><h2>Meter</h2></header>
2514
            <div><meter value="2" min="0" max="10">2 out of 10</meter></div>
2515
            <footer><p><a href="#top">[Top]</a></p></footer>
2516
          </article>
2517
          <article id="embedded__progress">
2518
            <header><h2>Progress</h2></header>
2519
            <div><progress>progress</progress></div>
2520
            <footer><p><a href="#top">[Top]</a></p></footer>
2521
          </article>
2522
          <article id="embedded__svg">
2523
            <header><h2>Inline SVG</h2></header>
2524
            <div><svg width="100px" height="100px"><circle cx="100" cy="100" r="100" fill="#1fa3ec"></circle></svg></div>
2525
            <footer><p><a href="#top">[Top]</a></p></footer>
2526
          </article>
2527
          <article id="embedded__iframe">
2528
            <header><h2>IFrame</h2></header>
2529
            <div><iframe src="index.html" height="300"></iframe></div>
2530
            <footer><p><a href="#top">[Top]</a></p></footer>
2531
          </article>
2532
        </section>
2533
        <section id="text">
2534
          <header><h1>Text</h1></header>
2535
          <article id="text__headings">
2536
            <header>
2537
              <h1>Headings</h1>
2538
            </header>
2539
            <div>
2540
              <h1>Heading 1</h1>
2541
              <h2>Heading 2</h2>
2542
              <h3>Heading 3</h3>
2543
              <h4>Heading 4</h4>
2544
              <h5>Heading 5</h5>
2545
              <h6>Heading 6</h6>
2546
            </div>
2547
            <footer><p><a href="#top">[Top]</a></p></footer>
2548
          </article>
2549
          <article id="text__paragraphs">
2550
            <header><h1>Paragraphs</h1></header>
2551
            <div>
2552
              <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
2553
            </div>
2554
            <footer><p><a href="#top">[Top]</a></p></footer>
2555
          </article>
2556
          <article id="text__blockquotes">
2557
            <header><h1>Blockquotes</h1></header>
2558
            <div>
2559
              <blockquote>
2560
                <p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
2561
                <p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
2562
                <cite><a href="#!">Said no one, ever.</a></cite>
2563
              </blockquote>
2564
            </div>
2565
            <footer><p><a href="#top">[Top]</a></p></footer>
2566
          </article>
2567
          <article id="text__lists">
2568
            <header><h1>Lists</h1></header>
2569
            <div>
2570
              <h3>Definition list</h3>
2571
              <dl>
2572
                <dt>Definition List Title</dt>
2573
                <dd>This is a definition list division.</dd>
2574
              </dl>
2575
              <h3>Ordered List</h3>
2576
              <ol>
2577
                <li>List Item 1</li>
2578
                <li>List Item 2</li>
2579
                <li>List Item 3</li>
2580
              </ol>
2581
              <h3>Unordered List</h3>
2582
              <ul>
2583
                <li>List Item 1</li>
2584
                <li>List Item 2</li>
2585
                <li>List Item 3</li>
2586
              </ul>
2587
            </div>
2588
            <footer><p><a href="#top">[Top]</a></p></footer>
2589
          </article>
2590
          <article id="text__hr">
2591
            <header><h1>Horizontal rules</h1></header>
2592
            <div>
2593
              <hr>
2594
            </div>
2595
            <footer><p><a href="#top">[Top]</a></p></footer>
2596
          </article>
2597
          <article id="text__tables">
2598
            <header><h1>Tabular data</h1></header>
2599
            <table>
2600
              <caption>Table Caption</caption>
2601
              <thead>
2602
                <tr>
2603
                  <th>Table Heading 1</th>
2604
                  <th>Table Heading 2</th>
2605
                  <th>Table Heading 3</th>
2606
                  <th>Table Heading 4</th>
2607
                  <th>Table Heading 5</th>
2608
                </tr>
2609
              </thead>
2610
              <tfoot>
2611
                <tr>
2612
                  <th>Table Footer 1</th>
2613
                  <th>Table Footer 2</th>
2614
                  <th>Table Footer 3</th>
2615
                  <th>Table Footer 4</th>
2616
                  <th>Table Footer 5</th>
2617
                </tr>
2618
              </tfoot>
2619
              <tbody>
2620
                <tr>
2621
                  <td>Table Cell 1</td>
2622
                  <td>Table Cell 2</td>
2623
                  <td>Table Cell 3</td>
2624
                  <td>Table Cell 4</td>
2625
                  <td>Table Cell 5</td>
2626
                </tr>
2627
                <tr>
2628
                  <td>Table Cell 1</td>
2629
                  <td>Table Cell 2</td>
2630
                  <td>Table Cell 3</td>
2631
                  <td>Table Cell 4</td>
2632
                  <td>Table Cell 5</td>
2633
                </tr>
2634
                <tr>
2635
                  <td>Table Cell 1</td>
2636
                  <td>Table Cell 2</td>
2637
                  <td>Table Cell 3</td>
2638
                  <td>Table Cell 4</td>
2639
                  <td>Table Cell 5</td>
2640
                </tr>
2641
                <tr>
2642
                  <td>Table Cell 1</td>
2643
                  <td>Table Cell 2</td>
2644
                  <td>Table Cell 3</td>
2645
                  <td>Table Cell 4</td>
2646
                  <td>Table Cell 5</td>
2647
                </tr>
2648
              </tbody>
2649
            </table>
2650
            <footer><p><a href="#top">[Top]</a></p></footer>
2651
          </article>
2652
          <article id="text__code">
2653
            <header><h1>Code</h1></header>
2654
            <div>
2655
              <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
2656
              <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
2657
              <p><strong>Sample output:</strong> <samp>This is sample output from a computer program.</samp></p>
2658
              <h2>Pre-formatted text</h2>
2659
              <pre>P R E F O R M A T T E D T E X T
2660
  ! " # $ % &amp; ' ( ) * + , - . /
2661
  0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ?
2662
  @ A B C D E F G H I J K L M N O
2663
  P Q R S T U V W X Y Z [ \ ] ^ _
2664
  ` a b c d e f g h i j k l m n o
2665
  p q r s t u v w x y z { | } ~ </pre>
2666
            </div>
2667
            <footer><p><a href="#top">[Top]</a></p></footer>
2668
          </article>
2669
          <article id="text__inline">
2670
            <header><h1>Inline elements</h1></header>
2671
            <div>
2672
              <p><a href="#!">This is a text link</a>.</p>
2673
              <p><strong>Strong is used to indicate strong importance.</strong></p>
2674
              <p><em>This text has added emphasis.</em></p>
2675
              <p>The <b>b element</b> is stylistically different text from normal text, without any special importance.</p>
2676
              <p>The <i>i element</i> is text that is offset from the normal text.</p>
2677
              <p>The <u>u element</u> is text with an unarticulated, though explicitly rendered, non-textual annotation.</p>
2678
              <p><del>This text is deleted</del> and <ins>This text is inserted</ins>.</p>
2679
              <p><s>This text has a strikethrough</s>.</p>
2680
              <p>Superscript<sup>®</sup>.</p>
2681
              <p>Subscript for things like H<sub>2</sub>O.</p>
2682
              <p><small>This small text is small for for fine print, etc.</small></p>
2683
              <p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
2684
              <p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline quotation.</q></p>
2685
              <p><cite>This is a citation.</cite></p>
2686
              <p>The <dfn>dfn element</dfn> indicates a definition.</p>
2687
              <p>The <mark>mark element</mark> indicates a highlight.</p>
2688
              <p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
2689
              <p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
2690
            </div>
2691
            <footer><p><a href="#top">[Top]</a></p></footer>
2692
          </article>
2693
          <article id="text__comments">
2694
            <header><h1>HTML Comments</h1></header>
2695
            <div>
2696
              <p>There is comment here: <!--This comment should not be displayed--></p>
2697
              <p>There is a comment spanning multiple tags and lines below here.</p>
2698
              <!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
2699
              <p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
2700
              <p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
2701
            </div>
2702
            <footer><p><a href="#top">[Top]</a></p></footer>
2703
          </article>
2704
        </section>
2705
        <section id="embedded">
2706
          <header><h1>Embedded content</h1></header>
2707
          <article id="embedded__images">
2708
            <header><h2>Images</h2></header>
2709
            <div>
2710
              <h3>No <code>&lt;figure&gt;</code> element</h3>
2711
              <p><img src="http://placekitten.com/480/480" alt="Image alt text"></p>
2712
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, no <code>&lt;figcaption&gt;</code></h3>
2713
              <figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure>
2714
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaption&gt;</code></h3>
2715
              <figure>
2716
                <img src="http://placekitten.com/420/420" alt="Image alt text">
2717
                <figcaption>Here is a caption for this image.</figcaption>
2718
              </figure>
2719
            </div>
2720
            <footer><p><a href="#top">[Top]</a></p></footer>
2721
          </article>
2722
          <article id="embedded__audio">
2723
            <header><h2>Audio</h2></header>
2724
            <div><audio controls="">audio</audio></div>
2725
            <footer><p><a href="#top">[Top]</a></p></footer>
2726
          </article>
2727
          <article id="embedded__video">
2728
            <header><h2>Video</h2></header>
2729
            <div><video controls="">video</video></div>
2730
            <footer><p><a href="#top">[Top]</a></p></footer>
2731
          </article>
2732
          <article id="embedded__canvas">
2733
            <header><h2>Canvas</h2></header>
2734
            <div><canvas>canvas</canvas></div>
2735
            <footer><p><a href="#top">[Top]</a></p></footer>
2736
          </article>
2737
          <article id="embedded__meter">
2738
            <header><h2>Meter</h2></header>
2739
            <div><meter value="2" min="0" max="10">2 out of 10</meter></div>
2740
            <footer><p><a href="#top">[Top]</a></p></footer>
2741
          </article>
2742
          <article id="embedded__progress">
2743
            <header><h2>Progress</h2></header>
2744
            <div><progress>progress</progress></div>
2745
            <footer><p><a href="#top">[Top]</a></p></footer>
2746
          </article>
2747
          <article id="embedded__svg">
2748
            <header><h2>Inline SVG</h2></header>
2749
            <div><svg width="100px" height="100px"><circle cx="100" cy="100" r="100" fill="#1fa3ec"></circle></svg></div>
2750
            <footer><p><a href="#top">[Top]</a></p></footer>
2751
          </article>
2752
          <article id="embedded__iframe">
2753
            <header><h2>IFrame</h2></header>
2754
            <div><iframe src="index.html" height="300"></iframe></div>
2755
            <footer><p><a href="#top">[Top]</a></p></footer>
2756
          </article>
2757
        </section>
2758
        <section id="text">
2759
          <header><h1>Text</h1></header>
2760
          <article id="text__headings">
2761
            <header>
2762
              <h1>Headings</h1>
2763
            </header>
2764
            <div>
2765
              <h1>Heading 1</h1>
2766
              <h2>Heading 2</h2>
2767
              <h3>Heading 3</h3>
2768
              <h4>Heading 4</h4>
2769
              <h5>Heading 5</h5>
2770
              <h6>Heading 6</h6>
2771
            </div>
2772
            <footer><p><a href="#top">[Top]</a></p></footer>
2773
          </article>
2774
          <article id="text__paragraphs">
2775
            <header><h1>Paragraphs</h1></header>
2776
            <div>
2777
              <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
2778
            </div>
2779
            <footer><p><a href="#top">[Top]</a></p></footer>
2780
          </article>
2781
          <article id="text__blockquotes">
2782
            <header><h1>Blockquotes</h1></header>
2783
            <div>
2784
              <blockquote>
2785
                <p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
2786
                <p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
2787
                <cite><a href="#!">Said no one, ever.</a></cite>
2788
              </blockquote>
2789
            </div>
2790
            <footer><p><a href="#top">[Top]</a></p></footer>
2791
          </article>
2792
          <article id="text__lists">
2793
            <header><h1>Lists</h1></header>
2794
            <div>
2795
              <h3>Definition list</h3>
2796
              <dl>
2797
                <dt>Definition List Title</dt>
2798
                <dd>This is a definition list division.</dd>
2799
              </dl>
2800
              <h3>Ordered List</h3>
2801
              <ol>
2802
                <li>List Item 1</li>
2803
                <li>List Item 2</li>
2804
                <li>List Item 3</li>
2805
              </ol>
2806
              <h3>Unordered List</h3>
2807
              <ul>
2808
                <li>List Item 1</li>
2809
                <li>List Item 2</li>
2810
                <li>List Item 3</li>
2811
              </ul>
2812
            </div>
2813
            <footer><p><a href="#top">[Top]</a></p></footer>
2814
          </article>
2815
          <article id="text__hr">
2816
            <header><h1>Horizontal rules</h1></header>
2817
            <div>
2818
              <hr>
2819
            </div>
2820
            <footer><p><a href="#top">[Top]</a></p></footer>
2821
          </article>
2822
          <article id="text__tables">
2823
            <header><h1>Tabular data</h1></header>
2824
            <table>
2825
              <caption>Table Caption</caption>
2826
              <thead>
2827
                <tr>
2828
                  <th>Table Heading 1</th>
2829
                  <th>Table Heading 2</th>
2830
                  <th>Table Heading 3</th>
2831
                  <th>Table Heading 4</th>
2832
                  <th>Table Heading 5</th>
2833
                </tr>
2834
              </thead>
2835
              <tfoot>
2836
                <tr>
2837
                  <th>Table Footer 1</th>
2838
                  <th>Table Footer 2</th>
2839
                  <th>Table Footer 3</th>
2840
                  <th>Table Footer 4</th>
2841
                  <th>Table Footer 5</th>
2842
                </tr>
2843
              </tfoot>
2844
              <tbody>
2845
                <tr>
2846
                  <td>Table Cell 1</td>
2847
                  <td>Table Cell 2</td>
2848
                  <td>Table Cell 3</td>
2849
                  <td>Table Cell 4</td>
2850
                  <td>Table Cell 5</td>
2851
                </tr>
2852
                <tr>
2853
                  <td>Table Cell 1</td>
2854
                  <td>Table Cell 2</td>
2855
                  <td>Table Cell 3</td>
2856
                  <td>Table Cell 4</td>
2857
                  <td>Table Cell 5</td>
2858
                </tr>
2859
                <tr>
2860
                  <td>Table Cell 1</td>
2861
                  <td>Table Cell 2</td>
2862
                  <td>Table Cell 3</td>
2863
                  <td>Table Cell 4</td>
2864
                  <td>Table Cell 5</td>
2865
                </tr>
2866
                <tr>
2867
                  <td>Table Cell 1</td>
2868
                  <td>Table Cell 2</td>
2869
                  <td>Table Cell 3</td>
2870
                  <td>Table Cell 4</td>
2871
                  <td>Table Cell 5</td>
2872
                </tr>
2873
              </tbody>
2874
            </table>
2875
            <footer><p><a href="#top">[Top]</a></p></footer>
2876
          </article>
2877
          <article id="text__code">
2878
            <header><h1>Code</h1></header>
2879
            <div>
2880
              <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
2881
              <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
2882
              <p><strong>Sample output:</strong> <samp>This is sample output from a computer program.</samp></p>
2883
              <h2>Pre-formatted text</h2>
2884
              <pre>P R E F O R M A T T E D T E X T
2885
  ! " # $ % &amp; ' ( ) * + , - . /
2886
  0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ?
2887
  @ A B C D E F G H I J K L M N O
2888
  P Q R S T U V W X Y Z [ \ ] ^ _
2889
  ` a b c d e f g h i j k l m n o
2890
  p q r s t u v w x y z { | } ~ </pre>
2891
            </div>
2892
            <footer><p><a href="#top">[Top]</a></p></footer>
2893
          </article>
2894
          <article id="text__inline">
2895
            <header><h1>Inline elements</h1></header>
2896
            <div>
2897
              <p><a href="#!">This is a text link</a>.</p>
2898
              <p><strong>Strong is used to indicate strong importance.</strong></p>
2899
              <p><em>This text has added emphasis.</em></p>
2900
              <p>The <b>b element</b> is stylistically different text from normal text, without any special importance.</p>
2901
              <p>The <i>i element</i> is text that is offset from the normal text.</p>
2902
              <p>The <u>u element</u> is text with an unarticulated, though explicitly rendered, non-textual annotation.</p>
2903
              <p><del>This text is deleted</del> and <ins>This text is inserted</ins>.</p>
2904
              <p><s>This text has a strikethrough</s>.</p>
2905
              <p>Superscript<sup>®</sup>.</p>
2906
              <p>Subscript for things like H<sub>2</sub>O.</p>
2907
              <p><small>This small text is small for for fine print, etc.</small></p>
2908
              <p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
2909
              <p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline quotation.</q></p>
2910
              <p><cite>This is a citation.</cite></p>
2911
              <p>The <dfn>dfn element</dfn> indicates a definition.</p>
2912
              <p>The <mark>mark element</mark> indicates a highlight.</p>
2913
              <p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
2914
              <p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
2915
            </div>
2916
            <footer><p><a href="#top">[Top]</a></p></footer>
2917
          </article>
2918
          <article id="text__comments">
2919
            <header><h1>HTML Comments</h1></header>
2920
            <div>
2921
              <p>There is comment here: <!--This comment should not be displayed--></p>
2922
              <p>There is a comment spanning multiple tags and lines below here.</p>
2923
              <!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
2924
              <p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
2925
              <p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
2926
            </div>
2927
            <footer><p><a href="#top">[Top]</a></p></footer>
2928
          </article>
2929
        </section>
2930
        <section id="embedded">
2931
          <header><h1>Embedded content</h1></header>
2932
          <article id="embedded__images">
2933
            <header><h2>Images</h2></header>
2934
            <div>
2935
              <h3>No <code>&lt;figure&gt;</code> element</h3>
2936
              <p><img src="http://placekitten.com/480/480" alt="Image alt text"></p>
2937
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, no <code>&lt;figcaption&gt;</code></h3>
2938
              <figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure>
2939
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaption&gt;</code></h3>
2940
              <figure>
2941
                <img src="http://placekitten.com/420/420" alt="Image alt text">
2942
                <figcaption>Here is a caption for this image.</figcaption>
2943
              </figure>
2944
            </div>
2945
            <footer><p><a href="#top">[Top]</a></p></footer>
2946
          </article>
2947
          <article id="embedded__audio">
2948
            <header><h2>Audio</h2></header>
2949
            <div><audio controls="">audio</audio></div>
2950
            <footer><p><a href="#top">[Top]</a></p></footer>
2951
          </article>
2952
          <article id="embedded__video">
2953
            <header><h2>Video</h2></header>
2954
            <div><video controls="">video</video></div>
2955
            <footer><p><a href="#top">[Top]</a></p></footer>
2956
          </article>
2957
          <article id="embedded__canvas">
2958
            <header><h2>Canvas</h2></header>
2959
            <div><canvas>canvas</canvas></div>
2960
            <footer><p><a href="#top">[Top]</a></p></footer>
2961
          </article>
2962
          <article id="embedded__meter">
2963
            <header><h2>Meter</h2></header>
2964
            <div><meter value="2" min="0" max="10">2 out of 10</meter></div>
2965
            <footer><p><a href="#top">[Top]</a></p></footer>
2966
          </article>
2967
          <article id="embedded__progress">
2968
            <header><h2>Progress</h2></header>
2969
            <div><progress>progress</progress></div>
2970
            <footer><p><a href="#top">[Top]</a></p></footer>
2971
          </article>
2972
          <article id="embedded__svg">
2973
            <header><h2>Inline SVG</h2></header>
2974
            <div><svg width="100px" height="100px"><circle cx="100" cy="100" r="100" fill="#1fa3ec"></circle></svg></div>
2975
            <footer><p><a href="#top">[Top]</a></p></footer>
2976
          </article>
2977
          <article id="embedded__iframe">
2978
            <header><h2>IFrame</h2></header>
2979
            <div><iframe src="index.html" height="300"></iframe></div>
2980
            <footer><p><a href="#top">[Top]</a></p></footer>
2981
          </article>
2982
        </section>
2983
        <section id="text">
2984
          <header><h1>Text</h1></header>
2985
          <article id="text__headings">
2986
            <header>
2987
              <h1>Headings</h1>
2988
            </header>
2989
            <div>
2990
              <h1>Heading 1</h1>
2991
              <h2>Heading 2</h2>
2992
              <h3>Heading 3</h3>
2993
              <h4>Heading 4</h4>
2994
              <h5>Heading 5</h5>
2995
              <h6>Heading 6</h6>
2996
            </div>
2997
            <footer><p><a href="#top">[Top]</a></p></footer>
2998
          </article>
2999
          <article id="text__paragraphs">
3000
            <header><h1>Paragraphs</h1></header>
3001
            <div>
3002
              <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
3003
            </div>
3004
            <footer><p><a href="#top">[Top]</a></p></footer>
3005
          </article>
3006
          <article id="text__blockquotes">
3007
            <header><h1>Blockquotes</h1></header>
3008
            <div>
3009
              <blockquote>
3010
                <p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
3011
                <p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
3012
                <cite><a href="#!">Said no one, ever.</a></cite>
3013
              </blockquote>
3014
            </div>
3015
            <footer><p><a href="#top">[Top]</a></p></footer>
3016
          </article>
3017
          <article id="text__lists">
3018
            <header><h1>Lists</h1></header>
3019
            <div>
3020
              <h3>Definition list</h3>
3021
              <dl>
3022
                <dt>Definition List Title</dt>
3023
                <dd>This is a definition list division.</dd>
3024
              </dl>
3025
              <h3>Ordered List</h3>
3026
              <ol>
3027
                <li>List Item 1</li>
3028
                <li>List Item 2</li>
3029
                <li>List Item 3</li>
3030
              </ol>
3031
              <h3>Unordered List</h3>
3032
              <ul>
3033
                <li>List Item 1</li>
3034
                <li>List Item 2</li>
3035
                <li>List Item 3</li>
3036
              </ul>
3037
            </div>
3038
            <footer><p><a href="#top">[Top]</a></p></footer>
3039
          </article>
3040
          <article id="text__hr">
3041
            <header><h1>Horizontal rules</h1></header>
3042
            <div>
3043
              <hr>
3044
            </div>
3045
            <footer><p><a href="#top">[Top]</a></p></footer>
3046
          </article>
3047
          <article id="text__tables">
3048
            <header><h1>Tabular data</h1></header>
3049
            <table>
3050
              <caption>Table Caption</caption>
3051
              <thead>
3052
                <tr>
3053
                  <th>Table Heading 1</th>
3054
                  <th>Table Heading 2</th>
3055
                  <th>Table Heading 3</th>
3056
                  <th>Table Heading 4</th>
3057
                  <th>Table Heading 5</th>
3058
                </tr>
3059
              </thead>
3060
              <tfoot>
3061
                <tr>
3062
                  <th>Table Footer 1</th>
3063
                  <th>Table Footer 2</th>
3064
                  <th>Table Footer 3</th>
3065
                  <th>Table Footer 4</th>
3066
                  <th>Table Footer 5</th>
3067
                </tr>
3068
              </tfoot>
3069
              <tbody>
3070
                <tr>
3071
                  <td>Table Cell 1</td>
3072
                  <td>Table Cell 2</td>
3073
                  <td>Table Cell 3</td>
3074
                  <td>Table Cell 4</td>
3075
                  <td>Table Cell 5</td>
3076
                </tr>
3077
                <tr>
3078
                  <td>Table Cell 1</td>
3079
                  <td>Table Cell 2</td>
3080
                  <td>Table Cell 3</td>
3081
                  <td>Table Cell 4</td>
3082
                  <td>Table Cell 5</td>
3083
                </tr>
3084
                <tr>
3085
                  <td>Table Cell 1</td>
3086
                  <td>Table Cell 2</td>
3087
                  <td>Table Cell 3</td>
3088
                  <td>Table Cell 4</td>
3089
                  <td>Table Cell 5</td>
3090
                </tr>
3091
                <tr>
3092
                  <td>Table Cell 1</td>
3093
                  <td>Table Cell 2</td>
3094
                  <td>Table Cell 3</td>
3095
                  <td>Table Cell 4</td>
3096
                  <td>Table Cell 5</td>
3097
                </tr>
3098
              </tbody>
3099
            </table>
3100
            <footer><p><a href="#top">[Top]</a></p></footer>
3101
          </article>
3102
          <article id="text__code">
3103
            <header><h1>Code</h1></header>
3104
            <div>
3105
              <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
3106
              <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
3107
              <p><strong>Sample output:</strong> <samp>This is sample output from a computer program.</samp></p>
3108
              <h2>Pre-formatted text</h2>
3109
              <pre>P R E F O R M A T T E D T E X T
3110
  ! " # $ % &amp; ' ( ) * + , - . /
3111
  0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ?
3112
  @ A B C D E F G H I J K L M N O
3113
  P Q R S T U V W X Y Z [ \ ] ^ _
3114
  ` a b c d e f g h i j k l m n o
3115
  p q r s t u v w x y z { | } ~ </pre>
3116
            </div>
3117
            <footer><p><a href="#top">[Top]</a></p></footer>
3118
          </article>
3119
          <article id="text__inline">
3120
            <header><h1>Inline elements</h1></header>
3121
            <div>
3122
              <p><a href="#!">This is a text link</a>.</p>
3123
              <p><strong>Strong is used to indicate strong importance.</strong></p>
3124
              <p><em>This text has added emphasis.</em></p>
3125
              <p>The <b>b element</b> is stylistically different text from normal text, without any special importance.</p>
3126
              <p>The <i>i element</i> is text that is offset from the normal text.</p>
3127
              <p>The <u>u element</u> is text with an unarticulated, though explicitly rendered, non-textual annotation.</p>
3128
              <p><del>This text is deleted</del> and <ins>This text is inserted</ins>.</p>
3129
              <p><s>This text has a strikethrough</s>.</p>
3130
              <p>Superscript<sup>®</sup>.</p>
3131
              <p>Subscript for things like H<sub>2</sub>O.</p>
3132
              <p><small>This small text is small for for fine print, etc.</small></p>
3133
              <p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
3134
              <p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline quotation.</q></p>
3135
              <p><cite>This is a citation.</cite></p>
3136
              <p>The <dfn>dfn element</dfn> indicates a definition.</p>
3137
              <p>The <mark>mark element</mark> indicates a highlight.</p>
3138
              <p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
3139
              <p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
3140
            </div>
3141
            <footer><p><a href="#top">[Top]</a></p></footer>
3142
          </article>
3143
          <article id="text__comments">
3144
            <header><h1>HTML Comments</h1></header>
3145
            <div>
3146
              <p>There is comment here: <!--This comment should not be displayed--></p>
3147
              <p>There is a comment spanning multiple tags and lines below here.</p>
3148
              <!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
3149
              <p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
3150
              <p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
3151
            </div>
3152
            <footer><p><a href="#top">[Top]</a></p></footer>
3153
          </article>
3154
        </section>
3155
        <section id="embedded">
3156
          <header><h1>Embedded content</h1></header>
3157
          <article id="embedded__images">
3158
            <header><h2>Images</h2></header>
3159
            <div>
3160
              <h3>No <code>&lt;figure&gt;</code> element</h3>
3161
              <p><img src="http://placekitten.com/480/480" alt="Image alt text"></p>
3162
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, no <code>&lt;figcaption&gt;</code></h3>
3163
              <figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure>
3164
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaption&gt;</code></h3>
3165
              <figure>
3166
                <img src="http://placekitten.com/420/420" alt="Image alt text">
3167
                <figcaption>Here is a caption for this image.</figcaption>
3168
              </figure>
3169
            </div>
3170
            <footer><p><a href="#top">[Top]</a></p></footer>
3171
          </article>
3172
          <article id="embedded__audio">
3173
            <header><h2>Audio</h2></header>
3174
            <div><audio controls="">audio</audio></div>
3175
            <footer><p><a href="#top">[Top]</a></p></footer>
3176
          </article>
3177
          <article id="embedded__video">
3178
            <header><h2>Video</h2></header>
3179
            <div><video controls="">video</video></div>
3180
            <footer><p><a href="#top">[Top]</a></p></footer>
3181
          </article>
3182
          <article id="embedded__canvas">
3183
            <header><h2>Canvas</h2></header>
3184
            <div><canvas>canvas</canvas></div>
3185
            <footer><p><a href="#top">[Top]</a></p></footer>
3186
          </article>
3187
          <article id="embedded__meter">
3188
            <header><h2>Meter</h2></header>
3189
            <div><meter value="2" min="0" max="10">2 out of 10</meter></div>
3190
            <footer><p><a href="#top">[Top]</a></p></footer>
3191
          </article>
3192
          <article id="embedded__progress">
3193
            <header><h2>Progress</h2></header>
3194
            <div><progress>progress</progress></div>
3195
            <footer><p><a href="#top">[Top]</a></p></footer>
3196
          </article>
3197
          <article id="embedded__svg">
3198
            <header><h2>Inline SVG</h2></header>
3199
            <div><svg width="100px" height="100px"><circle cx="100" cy="100" r="100" fill="#1fa3ec"></circle></svg></div>
3200
            <footer><p><a href="#top">[Top]</a></p></footer>
3201
          </article>
3202
          <article id="embedded__iframe">
3203
            <header><h2>IFrame</h2></header>
3204
            <div><iframe src="index.html" height="300"></iframe></div>
3205
            <footer><p><a href="#top">[Top]</a></p></footer>
3206
          </article>
3207
        </section>
3208
        <section id="text">
3209
          <header><h1>Text</h1></header>
3210
          <article id="text__headings">
3211
            <header>
3212
              <h1>Headings</h1>
3213
            </header>
3214
            <div>
3215
              <h1>Heading 1</h1>
3216
              <h2>Heading 2</h2>
3217
              <h3>Heading 3</h3>
3218
              <h4>Heading 4</h4>
3219
              <h5>Heading 5</h5>
3220
              <h6>Heading 6</h6>
3221
            </div>
3222
            <footer><p><a href="#top">[Top]</a></p></footer>
3223
          </article>
3224
          <article id="text__paragraphs">
3225
            <header><h1>Paragraphs</h1></header>
3226
            <div>
3227
              <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
3228
            </div>
3229
            <footer><p><a href="#top">[Top]</a></p></footer>
3230
          </article>
3231
          <article id="text__blockquotes">
3232
            <header><h1>Blockquotes</h1></header>
3233
            <div>
3234
              <blockquote>
3235
                <p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
3236
                <p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
3237
                <cite><a href="#!">Said no one, ever.</a></cite>
3238
              </blockquote>
3239
            </div>
3240
            <footer><p><a href="#top">[Top]</a></p></footer>
3241
          </article>
3242
          <article id="text__lists">
3243
            <header><h1>Lists</h1></header>
3244
            <div>
3245
              <h3>Definition list</h3>
3246
              <dl>
3247
                <dt>Definition List Title</dt>
3248
                <dd>This is a definition list division.</dd>
3249
              </dl>
3250
              <h3>Ordered List</h3>
3251
              <ol>
3252
                <li>List Item 1</li>
3253
                <li>List Item 2</li>
3254
                <li>List Item 3</li>
3255
              </ol>
3256
              <h3>Unordered List</h3>
3257
              <ul>
3258
                <li>List Item 1</li>
3259
                <li>List Item 2</li>
3260
                <li>List Item 3</li>
3261
              </ul>
3262
            </div>
3263
            <footer><p><a href="#top">[Top]</a></p></footer>
3264
          </article>
3265
          <article id="text__hr">
3266
            <header><h1>Horizontal rules</h1></header>
3267
            <div>
3268
              <hr>
3269
            </div>
3270
            <footer><p><a href="#top">[Top]</a></p></footer>
3271
          </article>
3272
          <article id="text__tables">
3273
            <header><h1>Tabular data</h1></header>
3274
            <table>
3275
              <caption>Table Caption</caption>
3276
              <thead>
3277
                <tr>
3278
                  <th>Table Heading 1</th>
3279
                  <th>Table Heading 2</th>
3280
                  <th>Table Heading 3</th>
3281
                  <th>Table Heading 4</th>
3282
                  <th>Table Heading 5</th>
3283
                </tr>
3284
              </thead>
3285
              <tfoot>
3286
                <tr>
3287
                  <th>Table Footer 1</th>
3288
                  <th>Table Footer 2</th>
3289
                  <th>Table Footer 3</th>
3290
                  <th>Table Footer 4</th>
3291
                  <th>Table Footer 5</th>
3292
                </tr>
3293
              </tfoot>
3294
              <tbody>
3295
                <tr>
3296
                  <td>Table Cell 1</td>
3297
                  <td>Table Cell 2</td>
3298
                  <td>Table Cell 3</td>
3299
                  <td>Table Cell 4</td>
3300
                  <td>Table Cell 5</td>
3301
                </tr>
3302
                <tr>
3303
                  <td>Table Cell 1</td>
3304
                  <td>Table Cell 2</td>
3305
                  <td>Table Cell 3</td>
3306
                  <td>Table Cell 4</td>
3307
                  <td>Table Cell 5</td>
3308
                </tr>
3309
                <tr>
3310
                  <td>Table Cell 1</td>
3311
                  <td>Table Cell 2</td>
3312
                  <td>Table Cell 3</td>
3313
                  <td>Table Cell 4</td>
3314
                  <td>Table Cell 5</td>
3315
                </tr>
3316
                <tr>
3317
                  <td>Table Cell 1</td>
3318
                  <td>Table Cell 2</td>
3319
                  <td>Table Cell 3</td>
3320
                  <td>Table Cell 4</td>
3321
                  <td>Table Cell 5</td>
3322
                </tr>
3323
              </tbody>
3324
            </table>
3325
            <footer><p><a href="#top">[Top]</a></p></footer>
3326
          </article>
3327
          <article id="text__code">
3328
            <header><h1>Code</h1></header>
3329
            <div>
3330
              <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
3331
              <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
3332
              <p><strong>Sample output:</strong> <samp>This is sample output from a computer program.</samp></p>
3333
              <h2>Pre-formatted text</h2>
3334
              <pre>P R E F O R M A T T E D T E X T
3335
  ! " # $ % &amp; ' ( ) * + , - . /
3336
  0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ?
3337
  @ A B C D E F G H I J K L M N O
3338
  P Q R S T U V W X Y Z [ \ ] ^ _
3339
  ` a b c d e f g h i j k l m n o
3340
  p q r s t u v w x y z { | } ~ </pre>
3341
            </div>
3342
            <footer><p><a href="#top">[Top]</a></p></footer>
3343
          </article>
3344
          <article id="text__inline">
3345
            <header><h1>Inline elements</h1></header>
3346
            <div>
3347
              <p><a href="#!">This is a text link</a>.</p>
3348
              <p><strong>Strong is used to indicate strong importance.</strong></p>
3349
              <p><em>This text has added emphasis.</em></p>
3350
              <p>The <b>b element</b> is stylistically different text from normal text, without any special importance.</p>
3351
              <p>The <i>i element</i> is text that is offset from the normal text.</p>
3352
              <p>The <u>u element</u> is text with an unarticulated, though explicitly rendered, non-textual annotation.</p>
3353
              <p><del>This text is deleted</del> and <ins>This text is inserted</ins>.</p>
3354
              <p><s>This text has a strikethrough</s>.</p>
3355
              <p>Superscript<sup>®</sup>.</p>
3356
              <p>Subscript for things like H<sub>2</sub>O.</p>
3357
              <p><small>This small text is small for for fine print, etc.</small></p>
3358
              <p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
3359
              <p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline quotation.</q></p>
3360
              <p><cite>This is a citation.</cite></p>
3361
              <p>The <dfn>dfn element</dfn> indicates a definition.</p>
3362
              <p>The <mark>mark element</mark> indicates a highlight.</p>
3363
              <p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
3364
              <p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
3365
            </div>
3366
            <footer><p><a href="#top">[Top]</a></p></footer>
3367
          </article>
3368
          <article id="text__comments">
3369
            <header><h1>HTML Comments</h1></header>
3370
            <div>
3371
              <p>There is comment here: <!--This comment should not be displayed--></p>
3372
              <p>There is a comment spanning multiple tags and lines below here.</p>
3373
              <!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
3374
              <p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
3375
              <p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
3376
            </div>
3377
            <footer><p><a href="#top">[Top]</a></p></footer>
3378
          </article>
3379
        </section>
3380
        <section id="embedded">
3381
          <header><h1>Embedded content</h1></header>
3382
          <article id="embedded__images">
3383
            <header><h2>Images</h2></header>
3384
            <div>
3385
              <h3>No <code>&lt;figure&gt;</code> element</h3>
3386
              <p><img src="http://placekitten.com/480/480" alt="Image alt text"></p>
3387
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, no <code>&lt;figcaption&gt;</code></h3>
3388
              <figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure>
3389
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaption&gt;</code></h3>
3390
              <figure>
3391
                <img src="http://placekitten.com/420/420" alt="Image alt text">
3392
                <figcaption>Here is a caption for this image.</figcaption>
3393
              </figure>
3394
            </div>
3395
            <footer><p><a href="#top">[Top]</a></p></footer>
3396
          </article>
3397
          <article id="embedded__audio">
3398
            <header><h2>Audio</h2></header>
3399
            <div><audio controls="">audio</audio></div>
3400
            <footer><p><a href="#top">[Top]</a></p></footer>
3401
          </article>
3402
          <article id="embedded__video">
3403
            <header><h2>Video</h2></header>
3404
            <div><video controls="">video</video></div>
3405
            <footer><p><a href="#top">[Top]</a></p></footer>
3406
          </article>
3407
          <article id="embedded__canvas">
3408
            <header><h2>Canvas</h2></header>
3409
            <div><canvas>canvas</canvas></div>
3410
            <footer><p><a href="#top">[Top]</a></p></footer>
3411
          </article>
3412
          <article id="embedded__meter">
3413
            <header><h2>Meter</h2></header>
3414
            <div><meter value="2" min="0" max="10">2 out of 10</meter></div>
3415
            <footer><p><a href="#top">[Top]</a></p></footer>
3416
          </article>
3417
          <article id="embedded__progress">
3418
            <header><h2>Progress</h2></header>
3419
            <div><progress>progress</progress></div>
3420
            <footer><p><a href="#top">[Top]</a></p></footer>
3421
          </article>
3422
          <article id="embedded__svg">
3423
            <header><h2>Inline SVG</h2></header>
3424
            <div><svg width="100px" height="100px"><circle cx="100" cy="100" r="100" fill="#1fa3ec"></circle></svg></div>
3425
            <footer><p><a href="#top">[Top]</a></p></footer>
3426
          </article>
3427
          <article id="embedded__iframe">
3428
            <header><h2>IFrame</h2></header>
3429
            <div><iframe src="index.html" height="300"></iframe></div>
3430
            <footer><p><a href="#top">[Top]</a></p></footer>
3431
          </article>
3432
        </section>
3433
        <section id="text">
3434
          <header><h1>Text</h1></header>
3435
          <article id="text__headings">
3436
            <header>
3437
              <h1>Headings</h1>
3438
            </header>
3439
            <div>
3440
              <h1>Heading 1</h1>
3441
              <h2>Heading 2</h2>
3442
              <h3>Heading 3</h3>
3443
              <h4>Heading 4</h4>
3444
              <h5>Heading 5</h5>
3445
              <h6>Heading 6</h6>
3446
            </div>
3447
            <footer><p><a href="#top">[Top]</a></p></footer>
3448
          </article>
3449
          <article id="text__paragraphs">
3450
            <header><h1>Paragraphs</h1></header>
3451
            <div>
3452
              <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
3453
            </div>
3454
            <footer><p><a href="#top">[Top]</a></p></footer>
3455
          </article>
3456
          <article id="text__blockquotes">
3457
            <header><h1>Blockquotes</h1></header>
3458
            <div>
3459
              <blockquote>
3460
                <p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
3461
                <p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
3462
                <cite><a href="#!">Said no one, ever.</a></cite>
3463
              </blockquote>
3464
            </div>
3465
            <footer><p><a href="#top">[Top]</a></p></footer>
3466
          </article>
3467
          <article id="text__lists">
3468
            <header><h1>Lists</h1></header>
3469
            <div>
3470
              <h3>Definition list</h3>
3471
              <dl>
3472
                <dt>Definition List Title</dt>
3473
                <dd>This is a definition list division.</dd>
3474
              </dl>
3475
              <h3>Ordered List</h3>
3476
              <ol>
3477
                <li>List Item 1</li>
3478
                <li>List Item 2</li>
3479
                <li>List Item 3</li>
3480
              </ol>
3481
              <h3>Unordered List</h3>
3482
              <ul>
3483
                <li>List Item 1</li>
3484
                <li>List Item 2</li>
3485
                <li>List Item 3</li>
3486
              </ul>
3487
            </div>
3488
            <footer><p><a href="#top">[Top]</a></p></footer>
3489
          </article>
3490
          <article id="text__hr">
3491
            <header><h1>Horizontal rules</h1></header>
3492
            <div>
3493
              <hr>
3494
            </div>
3495
            <footer><p><a href="#top">[Top]</a></p></footer>
3496
          </article>
3497
          <article id="text__tables">
3498
            <header><h1>Tabular data</h1></header>
3499
            <table>
3500
              <caption>Table Caption</caption>
3501
              <thead>
3502
                <tr>
3503
                  <th>Table Heading 1</th>
3504
                  <th>Table Heading 2</th>
3505
                  <th>Table Heading 3</th>
3506
                  <th>Table Heading 4</th>
3507
                  <th>Table Heading 5</th>
3508
                </tr>
3509
              </thead>
3510
              <tfoot>
3511
                <tr>
3512
                  <th>Table Footer 1</th>
3513
                  <th>Table Footer 2</th>
3514
                  <th>Table Footer 3</th>
3515
                  <th>Table Footer 4</th>
3516
                  <th>Table Footer 5</th>
3517
                </tr>
3518
              </tfoot>
3519
              <tbody>
3520
                <tr>
3521
                  <td>Table Cell 1</td>
3522
                  <td>Table Cell 2</td>
3523
                  <td>Table Cell 3</td>
3524
                  <td>Table Cell 4</td>
3525
                  <td>Table Cell 5</td>
3526
                </tr>
3527
                <tr>
3528
                  <td>Table Cell 1</td>
3529
                  <td>Table Cell 2</td>
3530
                  <td>Table Cell 3</td>
3531
                  <td>Table Cell 4</td>
3532
                  <td>Table Cell 5</td>
3533
                </tr>
3534
                <tr>
3535
                  <td>Table Cell 1</td>
3536
                  <td>Table Cell 2</td>
3537
                  <td>Table Cell 3</td>
3538
                  <td>Table Cell 4</td>
3539
                  <td>Table Cell 5</td>
3540
                </tr>
3541
                <tr>
3542
                  <td>Table Cell 1</td>
3543
                  <td>Table Cell 2</td>
3544
                  <td>Table Cell 3</td>
3545
                  <td>Table Cell 4</td>
3546
                  <td>Table Cell 5</td>
3547
                </tr>
3548
              </tbody>
3549
            </table>
3550
            <footer><p><a href="#top">[Top]</a></p></footer>
3551
          </article>
3552
          <article id="text__code">
3553
            <header><h1>Code</h1></header>
3554
            <div>
3555
              <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
3556
              <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
3557
              <p><strong>Sample output:</strong> <samp>This is sample output from a computer program.</samp></p>
3558
              <h2>Pre-formatted text</h2>
3559
              <pre>P R E F O R M A T T E D T E X T
3560
  ! " # $ % &amp; ' ( ) * + , - . /
3561
  0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ?
3562
  @ A B C D E F G H I J K L M N O
3563
  P Q R S T U V W X Y Z [ \ ] ^ _
3564
  ` a b c d e f g h i j k l m n o
3565
  p q r s t u v w x y z { | } ~ </pre>
3566
            </div>
3567
            <footer><p><a href="#top">[Top]</a></p></footer>
3568
          </article>
3569
          <article id="text__inline">
3570
            <header><h1>Inline elements</h1></header>
3571
            <div>
3572
              <p><a href="#!">This is a text link</a>.</p>
3573
              <p><strong>Strong is used to indicate strong importance.</strong></p>
3574
              <p><em>This text has added emphasis.</em></p>
3575
              <p>The <b>b element</b> is stylistically different text from normal text, without any special importance.</p>
3576
              <p>The <i>i element</i> is text that is offset from the normal text.</p>
3577
              <p>The <u>u element</u> is text with an unarticulated, though explicitly rendered, non-textual annotation.</p>
3578
              <p><del>This text is deleted</del> and <ins>This text is inserted</ins>.</p>
3579
              <p><s>This text has a strikethrough</s>.</p>
3580
              <p>Superscript<sup>®</sup>.</p>
3581
              <p>Subscript for things like H<sub>2</sub>O.</p>
3582
              <p><small>This small text is small for for fine print, etc.</small></p>
3583
              <p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
3584
              <p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline quotation.</q></p>
3585
              <p><cite>This is a citation.</cite></p>
3586
              <p>The <dfn>dfn element</dfn> indicates a definition.</p>
3587
              <p>The <mark>mark element</mark> indicates a highlight.</p>
3588
              <p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
3589
              <p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
3590
            </div>
3591
            <footer><p><a href="#top">[Top]</a></p></footer>
3592
          </article>
3593
          <article id="text__comments">
3594
            <header><h1>HTML Comments</h1></header>
3595
            <div>
3596
              <p>There is comment here: <!--This comment should not be displayed--></p>
3597
              <p>There is a comment spanning multiple tags and lines below here.</p>
3598
              <!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
3599
              <p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
3600
              <p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
3601
            </div>
3602
            <footer><p><a href="#top">[Top]</a></p></footer>
3603
          </article>
3604
        </section>
3605
        <section id="embedded">
3606
          <header><h1>Embedded content</h1></header>
3607
          <article id="embedded__images">
3608
            <header><h2>Images</h2></header>
3609
            <div>
3610
              <h3>No <code>&lt;figure&gt;</code> element</h3>
3611
              <p><img src="http://placekitten.com/480/480" alt="Image alt text"></p>
3612
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, no <code>&lt;figcaption&gt;</code></h3>
3613
              <figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure>
3614
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaption&gt;</code></h3>
3615
              <figure>
3616
                <img src="http://placekitten.com/420/420" alt="Image alt text">
3617
                <figcaption>Here is a caption for this image.</figcaption>
3618
              </figure>
3619
            </div>
3620
            <footer><p><a href="#top">[Top]</a></p></footer>
3621
          </article>
3622
          <article id="embedded__audio">
3623
            <header><h2>Audio</h2></header>
3624
            <div><audio controls="">audio</audio></div>
3625
            <footer><p><a href="#top">[Top]</a></p></footer>
3626
          </article>
3627
          <article id="embedded__video">
3628
            <header><h2>Video</h2></header>
3629
            <div><video controls="">video</video></div>
3630
            <footer><p><a href="#top">[Top]</a></p></footer>
3631
          </article>
3632
          <article id="embedded__canvas">
3633
            <header><h2>Canvas</h2></header>
3634
            <div><canvas>canvas</canvas></div>
3635
            <footer><p><a href="#top">[Top]</a></p></footer>
3636
          </article>
3637
          <article id="embedded__meter">
3638
            <header><h2>Meter</h2></header>
3639
            <div><meter value="2" min="0" max="10">2 out of 10</meter></div>
3640
            <footer><p><a href="#top">[Top]</a></p></footer>
3641
          </article>
3642
          <article id="embedded__progress">
3643
            <header><h2>Progress</h2></header>
3644
            <div><progress>progress</progress></div>
3645
            <footer><p><a href="#top">[Top]</a></p></footer>
3646
          </article>
3647
          <article id="embedded__svg">
3648
            <header><h2>Inline SVG</h2></header>
3649
            <div><svg width="100px" height="100px"><circle cx="100" cy="100" r="100" fill="#1fa3ec"></circle></svg></div>
3650
            <footer><p><a href="#top">[Top]</a></p></footer>
3651
          </article>
3652
          <article id="embedded__iframe">
3653
            <header><h2>IFrame</h2></header>
3654
            <div><iframe src="index.html" height="300"></iframe></div>
3655
            <footer><p><a href="#top">[Top]</a></p></footer>
3656
          </article>
3657
        </section>
3658
        <section id="text">
3659
          <header><h1>Text</h1></header>
3660
          <article id="text__headings">
3661
            <header>
3662
              <h1>Headings</h1>
3663
            </header>
3664
            <div>
3665
              <h1>Heading 1</h1>
3666
              <h2>Heading 2</h2>
3667
              <h3>Heading 3</h3>
3668
              <h4>Heading 4</h4>
3669
              <h5>Heading 5</h5>
3670
              <h6>Heading 6</h6>
3671
            </div>
3672
            <footer><p><a href="#top">[Top]</a></p></footer>
3673
          </article>
3674
          <article id="text__paragraphs">
3675
            <header><h1>Paragraphs</h1></header>
3676
            <div>
3677
              <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
3678
            </div>
3679
            <footer><p><a href="#top">[Top]</a></p></footer>
3680
          </article>
3681
          <article id="text__blockquotes">
3682
            <header><h1>Blockquotes</h1></header>
3683
            <div>
3684
              <blockquote>
3685
                <p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
3686
                <p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
3687
                <cite><a href="#!">Said no one, ever.</a></cite>
3688
              </blockquote>
3689
            </div>
3690
            <footer><p><a href="#top">[Top]</a></p></footer>
3691
          </article>
3692
          <article id="text__lists">
3693
            <header><h1>Lists</h1></header>
3694
            <div>
3695
              <h3>Definition list</h3>
3696
              <dl>
3697
                <dt>Definition List Title</dt>
3698
                <dd>This is a definition list division.</dd>
3699
              </dl>
3700
              <h3>Ordered List</h3>
3701
              <ol>
3702
                <li>List Item 1</li>
3703
                <li>List Item 2</li>
3704
                <li>List Item 3</li>
3705
              </ol>
3706
              <h3>Unordered List</h3>
3707
              <ul>
3708
                <li>List Item 1</li>
3709
                <li>List Item 2</li>
3710
                <li>List Item 3</li>
3711
              </ul>
3712
            </div>
3713
            <footer><p><a href="#top">[Top]</a></p></footer>
3714
          </article>
3715
          <article id="text__hr">
3716
            <header><h1>Horizontal rules</h1></header>
3717
            <div>
3718
              <hr>
3719
            </div>
3720
            <footer><p><a href="#top">[Top]</a></p></footer>
3721
          </article>
3722
          <article id="text__tables">
3723
            <header><h1>Tabular data</h1></header>
3724
            <table>
3725
              <caption>Table Caption</caption>
3726
              <thead>
3727
                <tr>
3728
                  <th>Table Heading 1</th>
3729
                  <th>Table Heading 2</th>
3730
                  <th>Table Heading 3</th>
3731
                  <th>Table Heading 4</th>
3732
                  <th>Table Heading 5</th>
3733
                </tr>
3734
              </thead>
3735
              <tfoot>
3736
                <tr>
3737
                  <th>Table Footer 1</th>
3738
                  <th>Table Footer 2</th>
3739
                  <th>Table Footer 3</th>
3740
                  <th>Table Footer 4</th>
3741
                  <th>Table Footer 5</th>
3742
                </tr>
3743
              </tfoot>
3744
              <tbody>
3745
                <tr>
3746
                  <td>Table Cell 1</td>
3747
                  <td>Table Cell 2</td>
3748
                  <td>Table Cell 3</td>
3749
                  <td>Table Cell 4</td>
3750
                  <td>Table Cell 5</td>
3751
                </tr>
3752
                <tr>
3753
                  <td>Table Cell 1</td>
3754
                  <td>Table Cell 2</td>
3755
                  <td>Table Cell 3</td>
3756
                  <td>Table Cell 4</td>
3757
                  <td>Table Cell 5</td>
3758
                </tr>
3759
                <tr>
3760
                  <td>Table Cell 1</td>
3761
                  <td>Table Cell 2</td>
3762
                  <td>Table Cell 3</td>
3763
                  <td>Table Cell 4</td>
3764
                  <td>Table Cell 5</td>
3765
                </tr>
3766
                <tr>
3767
                  <td>Table Cell 1</td>
3768
                  <td>Table Cell 2</td>
3769
                  <td>Table Cell 3</td>
3770
                  <td>Table Cell 4</td>
3771
                  <td>Table Cell 5</td>
3772
                </tr>
3773
              </tbody>
3774
            </table>
3775
            <footer><p><a href="#top">[Top]</a></p></footer>
3776
          </article>
3777
          <article id="text__code">
3778
            <header><h1>Code</h1></header>
3779
            <div>
3780
              <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
3781
              <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
3782
              <p><strong>Sample output:</strong> <samp>This is sample output from a computer program.</samp></p>
3783
              <h2>Pre-formatted text</h2>
3784
              <pre>P R E F O R M A T T E D T E X T
3785
  ! " # $ % &amp; ' ( ) * + , - . /
3786
  0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ?
3787
  @ A B C D E F G H I J K L M N O
3788
  P Q R S T U V W X Y Z [ \ ] ^ _
3789
  ` a b c d e f g h i j k l m n o
3790
  p q r s t u v w x y z { | } ~ </pre>
3791
            </div>
3792
            <footer><p><a href="#top">[Top]</a></p></footer>
3793
          </article>
3794
          <article id="text__inline">
3795
            <header><h1>Inline elements</h1></header>
3796
            <div>
3797
              <p><a href="#!">This is a text link</a>.</p>
3798
              <p><strong>Strong is used to indicate strong importance.</strong></p>
3799
              <p><em>This text has added emphasis.</em></p>
3800
              <p>The <b>b element</b> is stylistically different text from normal text, without any special importance.</p>
3801
              <p>The <i>i element</i> is text that is offset from the normal text.</p>
3802
              <p>The <u>u element</u> is text with an unarticulated, though explicitly rendered, non-textual annotation.</p>
3803
              <p><del>This text is deleted</del> and <ins>This text is inserted</ins>.</p>
3804
              <p><s>This text has a strikethrough</s>.</p>
3805
              <p>Superscript<sup>®</sup>.</p>
3806
              <p>Subscript for things like H<sub>2</sub>O.</p>
3807
              <p><small>This small text is small for for fine print, etc.</small></p>
3808
              <p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
3809
              <p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline quotation.</q></p>
3810
              <p><cite>This is a citation.</cite></p>
3811
              <p>The <dfn>dfn element</dfn> indicates a definition.</p>
3812
              <p>The <mark>mark element</mark> indicates a highlight.</p>
3813
              <p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
3814
              <p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
3815
            </div>
3816
            <footer><p><a href="#top">[Top]</a></p></footer>
3817
          </article>
3818
          <article id="text__comments">
3819
            <header><h1>HTML Comments</h1></header>
3820
            <div>
3821
              <p>There is comment here: <!--This comment should not be displayed--></p>
3822
              <p>There is a comment spanning multiple tags and lines below here.</p>
3823
              <!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
3824
              <p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
3825
              <p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
3826
            </div>
3827
            <footer><p><a href="#top">[Top]</a></p></footer>
3828
          </article>
3829
        </section>
3830
        <section id="embedded">
3831
          <header><h1>Embedded content</h1></header>
3832
          <article id="embedded__images">
3833
            <header><h2>Images</h2></header>
3834
            <div>
3835
              <h3>No <code>&lt;figure&gt;</code> element</h3>
3836
              <p><img src="http://placekitten.com/480/480" alt="Image alt text"></p>
3837
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, no <code>&lt;figcaption&gt;</code></h3>
3838
              <figure><img src="http://placekitten.com/420/420" alt="Image alt text"></figure>
3839
              <h3>Wrapped in a <code>&lt;figure&gt;</code> element, with a <code>&lt;figcaption&gt;</code></h3>
3840
              <figure>
3841
                <img src="http://placekitten.com/420/420" alt="Image alt text">
3842
                <figcaption>Here is a caption for this image.</figcaption>
3843
              </figure>
3844
            </div>
3845
            <footer><p><a href="#top">[Top]</a></p></footer>
3846
          </article>
3847
          <article id="embedded__audio">
3848
            <header><h2>Audio</h2></header>
3849
            <div><audio controls="">audio</audio></div>
3850
            <footer><p><a href="#top">[Top]</a></p></footer>
3851
          </article>
3852
          <article id="embedded__video">
3853
            <header><h2>Video</h2></header>
3854
            <div><video controls="">video</video></div>
3855
            <footer><p><a href="#top">[Top]</a></p></footer>
3856
          </article>
3857
          <article id="embedded__canvas">
3858
            <header><h2>Canvas</h2></header>
3859
            <div><canvas>canvas</canvas></div>
3860
            <footer><p><a href="#top">[Top]</a></p></footer>
3861
          </article>
3862
          <article id="embedded__meter">
3863
            <header><h2>Meter</h2></header>
3864
            <div><meter value="2" min="0" max="10">2 out of 10</meter></div>
3865
            <footer><p><a href="#top">[Top]</a></p></footer>
3866
          </article>
3867
          <article id="embedded__progress">
3868
            <header><h2>Progress</h2></header>
3869
            <div><progress>progress</progress></div>
3870
            <footer><p><a href="#top">[Top]</a></p></footer>
3871
          </article>
3872
          <article id="embedded__svg">
3873
            <header><h2>Inline SVG</h2></header>
3874
            <div><svg width="100px" height="100px"><circle cx="100" cy="100" r="100" fill="#1fa3ec"></circle></svg></div>
3875
            <footer><p><a href="#top">[Top]</a></p></footer>
3876
          </article>
3877
          <article id="embedded__iframe">
3878
            <header><h2>IFrame</h2></header>
3879
            <div><iframe src="index.html" height="300"></iframe></div>
3880
            <footer><p><a href="#top">[Top]</a></p></footer>
3881
          </article>
3882
        </section>
3883
        <section id="forms">
3884
          <header><h1>Form elements</h1></header>
3885
          <form>
3886
            <fieldset id="forms__input">
3887
              <legend>Input fields</legend>
3888
              <p>
3889
                <label for="input__text">Text Input</label>
3890
                <input id="input__text" type="text" placeholder="Text Input">
3891
              </p>
3892
              <p>
3893
                <label for="input__password">Password</label>
3894
                <input id="input__password" type="password" placeholder="Type your Password">
3895
              </p>
3896
              <p>
3897
                <label for="input__webaddress">Web Address</label>
3898
                <input id="input__webaddress" type="url" placeholder="http://yoursite.com">
3899
              </p>
3900
              <p>
3901
                <label for="input__emailaddress">Email Address</label>
3902
                <input id="input__emailaddress" type="email" placeholder="name@email.com">
3903
              </p>
3904
              <p>
3905
                <label for="input__phone">Phone Number</label>
3906
                <input id="input__phone" type="tel" placeholder="(999) 999-9999">
3907
              </p>
3908
              <p>
3909
                <label for="input__search">Search</label>
3910
                <input id="input__search" type="search" placeholder="Enter Search Term">
3911
              </p>
3912
              <p>
3913
                <label for="input__text2">Number Input</label>
3914
                <input id="input__text2" type="number" placeholder="Enter a Number">
3915
              </p>
3916
              <p>
3917
                <label for="input__text3" class="error">Error</label>
3918
                <input id="input__text3" class="is-error" type="text" placeholder="Text Input">
3919
              </p>
3920
              <p>
3921
                <label for="input__text4" class="valid">Valid</label>
3922
                <input id="input__text4" class="is-valid" type="text" placeholder="Text Input">
3923
              </p>
3924
            </fieldset>
3925
            <p><a href="#top">[Top]</a></p>
3926
            <fieldset id="forms__select">
3927
              <legend>Select menus</legend>
3928
              <p>
3929
                <label for="select">Select</label>
3930
                <select id="select">
3931
                  <optgroup label="Option Group">
3932
                    <option>Option One</option>
3933
                    <option>Option Two</option>
3934
                    <option>Option Three</option>
3935
                  </optgroup>
3936
                </select>
3937
              </p>
3938
            </fieldset>
3939
            <p><a href="#top">[Top]</a></p>
3940
            <fieldset id="forms__checkbox">
3941
              <legend>Checkboxes</legend>
3942
              <ul class="list list--bare">
3943
                <li><label for="checkbox1"><input id="checkbox1" class="checkbox1_class" name="checkbox" type="checkbox" checked="checked"> Choice A</label></li>
3944
                <li><label for="checkbox2"><input id="checkbox2" name="checkbox" type="checkbox"> Choice B</label></li>
3945
                <li><label for="checkbox3"><input id="checkbox3" name="checkbox" type="checkbox"> Choice C</label></li>
3946
              </ul>
3947
            </fieldset>
3948
            <p><a href="#top">[Top]</a></p>
3949
            <fieldset id="forms__radio">
3950
              <legend>Radio buttons</legend>
3951
              <ul class="list list--bare">
3952
                <li><label for="radio1"><input id="radio1" name="radio" type="radio" class="radio" checked="checked"> Option 1</label></li>
3953
                <li><label for="radio2"><input id="radio2" name="radio" type="radio" class="radio"> Option 2</label></li>
3954
                <li><label for="radio3"><input id="radio3" name="radio" type="radio" class="radio"> Option 3</label></li>
3955
              </ul>
3956
            </fieldset>
3957
            <p><a href="#top">[Top]</a></p>
3958
            <fieldset id="forms__textareas">
3959
              <legend>Textareas</legend>
3960
              <p>
3961
                <label for="textarea">Textarea</label>
3962
                <textarea id="textarea" rows="8" cols="48" placeholder="Enter your message here"></textarea>
3963
              </p>
3964
            </fieldset>
3965
            <p><a href="#top">[Top]</a></p>
3966
            <fieldset id="forms__html5">
3967
              <legend>HTML5 inputs</legend>
3968
              <p>
3969
                <label for="ic">Color input</label>
3970
                <input type="color" id="ic" value="#000000">
3971
              </p>
3972
              <p>
3973
                <label for="in">Number input</label>
3974
                <input type="number" id="in" min="0" max="10" value="5">
3975
              </p>
3976
              <p>
3977
                <label for="ir">Range input</label>
3978
                <input type="range" id="ir" value="10">
3979
              </p>
3980
              <p>
3981
                <label for="idd">Date input</label>
3982
                <input type="date" id="idd" value="1970-01-01">
3983
              </p>
3984
              <p>
3985
                <label for="idm">Month input</label>
3986
                <input type="month" id="idm" value="1970-01">
3987
              </p>
3988
              <p>
3989
                <label for="idw">Week input</label>
3990
                <input type="week" id="idw" value="1970-W01">
3991
              </p>
3992
              <p>
3993
                <label for="idt">Datetime input</label>
3994
                <input type="datetime" id="idt" value="1970-01-01T00:00:00Z">
3995
              </p>
3996
              <p>
3997
                <label for="idtl">Datetime-local input</label>
3998
                <input type="datetime-local" id="idtl" value="1970-01-01T00:00">
3999
              </p>
4000
            </fieldset>
4001
            <p><a href="#top">[Top]</a></p>
4002
            <fieldset id="forms__action">
4003
              <legend>Action buttons</legend>
4004
              <p>
4005
                <input type="submit" value="<input type=submit>">
4006
                <input type="button" value="<input type=button>">
4007
                <input type="reset" value="<input type=reset>">
4008
                <input type="submit" value="<input disabled>" disabled>
4009
              </p>
4010
              <p>
4011
                <button type="submit">&lt;button type=submit&gt;</button>
4012
                <button type="button">&lt;button type=button&gt;</button>
4013
                <button type="reset">&lt;button type=reset&gt;</button>
4014
                <button type="button" disabled>&lt;button disabled&gt;</button>
4015
              </p>
4016
            </fieldset>
4017
            <p><a href="#top">[Top]</a></p>
4018
          </form>
4019
        </section>
4020
      </main>
4021
      <footer role="contentinfo">
4022
        <p>Made by <a href="http://twitter.com/cbracco">@cbracco</a>. Code on <a href="http://github.com/cbracco/html5-test-page">GitHub</a>.</p>
4023
      </footer>
4024
    </div>
4025
  </body>
4026
</html>
4027
Tests:
  • document.querySelector

     
    var parent = document.getElementById('forms__checkbox');
    var el = document.querySelector('.checkbox1_class');
    var className = el.className;
  • parent.querySelector

     
    var parent = document.getElementById('forms__checkbox');
    var el = parent.querySelector('.checkbox1_class');
    var className = el.className;
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    document.querySelector
    parent.querySelector

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 6 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0
Firefox 59 on Windows
View result in a separate tab
Test name Executions per second
document.querySelector 218.4 Ops/sec
parent.querySelector 1381047.0 Ops/sec