-
Notifications
You must be signed in to change notification settings - Fork 28
/
kitchen-sink.html
executable file
·697 lines (682 loc) · 29 KB
/
kitchen-sink.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML5 Kitchen Sink</title>
<meta charset="utf-8">
</head>
<body>
<header role="banner">
<h1>HTML5 Kitchen Sink</h1>
<small>Jump to: <a href="#headings">Headings</a> | <a href="#sections">Sections</a> | <a href="#phrasing">Phrasing</a> | <a href="#palpable">Palpable Content</a> | <a href="#embeds">Embeds</a> | <a href="#forms">Forms</a> | <a href="#tables">Tables</a> </small> <br><br>
<p>This section serves as the <code>header</code>.</p>
</header>
<hr>
<main>
<section id="headings">
<h3><a href="#headings">#</a> Headings </h3>
<p>Elements <code>h1</code>, <code>h2</code>, <code>h3</code>, <code>h4</code>,
<code>h5</code>, <code>h6</code> make up the <em>heading content</em> category.
</p>
<hgroup>
<h1>h1 I am most important.</h1>
<h2>h2 Back in my quaint <a href='#'>garden</a></h2>
<h3>h3 Jaunty <a href='#'>zinnias</a> vie with flaunting phlox.</h3>
<h4>h4 Five or six big jet planes zoomed quickly by the new tower.</h4>
<h5>h5 Expect skilled signwriters to use many jazzy, quaint old alphabets effectively.</h5>
<h6>h6 Pack my box with five dozen liquor jugs.</h6>
</hgroup>
<footer>
<p>See the <a target="_blank" href="https://www.w3.org/TR/html5/dom.html#heading-content">Heading Content spec.</a></p>
<p>Note: these two paragraphs are contained in a <code>footer</code> element.
</p>
</footer>
</section>
<hr>
<section id="sections">
<header>
<h3><a href="#sections">#</a> Sections</h3>
<p>Elements <code>article</code>, <code>aside</code>, <code>nav</code>,
<code>section</code> make up the <em>sectioning content</em> category.
</p>
<nav>
<p>These links are contained in a <code>nav</code> element.</p>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<article>
<p>This paragraph is nested inside an <code>article</code> element. It contains many different, sometimes useful, <a href="http://www.w3schools.com/tags/">HTML5 elements</a>. Of course there are classics like <em>emphasis</em>, <strong>strong</strong>,
and <small>small</small> but there are many others as well. Hover the following text for abbreviation element: <abbr title="abbreviation">abbr</abbr>. You can define <del>deleted text</del> which often gets replaced with <ins>inserted</ins> text.</p>
<p>You can also use <kbd>keyboard text</kbd>, which sometimes is styled similarly to the <code><code></code> or <samp>samp</samp> elements. Even more specifically, there is an element just for <var>variables</var>. Not to be mistaken with block
quotes below, the quote element lets you denote something as <q>quoted text</q>. Lastly don't forget the sub (H<sub>2</sub>O) and sup (E = MC<sup>2</sup>) elements.</p>
<section>
<p>This paragraph is contained in a <code>section</code> element of its parent <code>article</code> element.</p>
<p>↓ The following paragraph has the <code>hidden</code> attribute and should not be displayed. ↓</p>
<p hidden>→ You should not see this paragraph. ←</p>
<p>↑ The previous paragraph should not be displayed. ↑</p>
</section>
</article>
<aside>
<p>This is contained in an <code>aside</code> element.</p>
</aside>
<footer>
<p>See the <a target="_blank" href="https://www.w3.org/TR/html5/dom.html#sectioning-content">Sectioning
Content spec.</a></p>
</footer>
</section>
<hr>
<section id="phrasing">
<header>
<h3><a href="#phrasing">#</a> Phrasing</h3>
<p>Elements <code>abbr</code>, <code>b</code>, <code>bdi</code>,
<code>bdo</code>, <code>br</code>, <code>cite</code>, <code>code</code>,
<code>data</code>, <code>del</code>, <code>dfn</code>, <code>em</code>,
<code>i</code>, <code>ins</code>, <code>kbd</code>, <code>mark</code>,
<code>meter</code>, <code>progress</code>, <code>q</code>, <code>s</code>,
<code>samp</code>, <code>small</code>, <code>span</code>, <code>strong</code>,
<code>sub</code>, <code>sup</code>, <code>time</code>, <code>u</code>,
<code>var</code>, <code>wbr</code>, and others make up the <em>phrasing content</em> category.
</p>
</header>
<p><code>abbr</code>: Some vehicles meet the
<abbr title="Super Ultra Low Emission Vehicle">SULEV</abbr> standard.<br>
<code>br</code> was used to make this sentence start on a new line.</p>
<p><code>bdi</code>: Some languages read right to left, <bdi lang="ar">مرحبا</bdi>.
<code>bdo</code>: <bdo dir="rtl">The normal direction has been
overridden.</bdo></p>
<p><code>em</code> is used for <em>emphasis</em> and usually renders as italics, contrast that with <code>i</code> which is used for alternate voice or to offset from the normal (such as a phrase from a different language or taxonomic designation): <i>E. coli</i> can be bad. <code>strong</code> is used for <strong>importance or urgency</strong> and usually renders as bold, contrast that with <code>b</code> which is used to <b>draw attention</b> without the semantic meaning of importance.</p>
<p><code>cite</code>: In the words of <cite>Charles Bukowski</cite> — <q>An intellectual says a simple thing in a hard way. An artist says a hard thing in a simple way.</q></p>
<p><code>data</code> can be used to specify <data value="2018-09-24T05:00-07:00">5 A.M.</data> that is machine-readable, but <code>time</code> is a better choice for specifying <time datetime="2018-09-24T05:00-07:00">5 A.M.</time> in a machine-readable format.
</p>
<p><code>del</code> can be <del datetime="2017-10-11T01:25-07:00">varily</del> used to mark deletions. <code>ins</code> marks <ins datetime="2007-12-19 00:00Z">insertions</ins>. <code>s</code>: similar to <code>del</code>, but used to mark content that is no longer relevant. <s>Windows XP version available.</s> <code>u</code>: a holdover with no real meaning that should be <u>removed</u>. <code>mark</code>: the HTML equivalent of the <mark>yellow highlighter</mark>. <code>span</code>: a
<span>generic element</span> with no meaning by itself.</p>
<p><code>dfn</code>: Foreign phrases add a certain <dfn lang="fr" title="French: indefinable quality">je ne sais quoi</dfn> to one's prose.
</p>
<p><code>q</code>: The W3C page <cite>About W3C</cite> says the W3C’s mission is <q cite="https://www.w3.org/Consortium/">To lead the World Wide Web to its full potential by developing protocols and guidelines that ensure long-term growth for the Web</q>.</p>
<p><code>kbd</code> and <code>samp</code>: I did this:</p>
<pre><samp>c:\><kbd>format c: /yes</kbd></samp></pre>
<p>Is that bad? Press <kbd><kbd>Ctrl</kbd></kbd>+<kbd><kbd>F5</kbd></kbd> for a hard reload.</p>
<p><code>var</code>: To log in, type <kbd>ssh <var>user</var>@example.com</kbd>, where <var>user</var> is your user ID.</p>
<p><code>meter</code> and <code>progress</code>: Storage space usage:
<meter value=6 max=8>6 blocks used (out of 8 total)</meter> Progress:
<progress value="37" max=100>37%</progress></p>
<p><code>sub</code> is used for subscripts: H<sub>2</sub>O. <code>sup</code> is used for superscripts: E = MC<sup>2</sup>. <code>small</code> is used for side comments: <q>I wrote this whole document. <small>[Editor's note: no he did not]</small></q> <code>wbr</code>: used to specify where a word may break and it is super<wbr>cali<wbr>fragil<wbr>istic<wbr>expiali<wbr>do<wbr>cious.</p>
<footer>
<p>See the <a target="_blank" href="https://www.w3.org/TR/html5/dom.html#phrasing-content">Phrasing Content spec.</a></p>
</footer>
</section>
<hr>
<section id="palpable">
<header>
<h3><a href="#palpable">#</a> Palpable Content</h3>
<p>Elements <code>a</code>, <code>address</code>, <code>blockquote</code>,
<code>button</code>, <code>details</code>, <code>dl</code>, <code>fieldset</code>,
<code>figure</code>, <code>form</code>, <code>input</code>, <code>label</code>,
<code>map</code>, <code>ol</code>, <code>output</code>, <code>pre</code>,
<code>select</code>, <code>table</code>, <code>textarea</code>,
<code>ul</code>, and others make up the <em>palpable content</em> category.
</p>
</header>
<p><code>a</code>: <a href="http://example.com">Example</a>.</p>
<p><code>address</code>:</p>
<address>1 Infinite Loop<br>
Cupertino, CA 95014<br>
United States
</address>
<p><code>blockquote</code>:</p>
<blockquote>
<p>I quickly explained that many big jobs involve few hazards</p>
</blockquote>
<blockquote>
<p>This is a multi-line blockquote with a cite reference. People think focus means saying yes to the thing you’ve got to focus on. But that’s not what it means at all. It means saying no to the hundred other good ideas that there are. You have to
pick carefully. I’m actually as proud of the things we haven’t done as the things I have done. Innovation is saying no to 1,000 things.</p>
<footer>Steve Jobs, <cite>Apple Worldwide Developers’ Conference, 1997</cite></footer>
</blockquote>
<p><code>details</code> and <code>summary</code>:</p>
<details>
<summary>Copying... <progress max="375505392" value="97543282"></progress> 25%
</summary>
<dl>
<dt>Transfer rate:</dt>
<dd>452KB/s</dd>
<dt>Duration:</dt>
<dd>01:16:27</dd>
<dt>Color profile:</dt>
<dd>SD (6-1-6)</dd>
<dt>Dimensions:</dt>
<dd>320×240</dd>
</dl>
</details>
<p><code>dl</code>:</p>
<dl>
<dt>Definition List Title</dt>
<dd>Definition list division.</dd>
<dt>Kitchen Sink</dt>
<dd>Used in expressions to describe work in which all conceivable (and some inconceivable) sources have been mined. In this case, a bunch of markup.</dd>
<dt>aside</dt>
<dd>Defines content aside from the page content</dd>
<dt>blockquote</dt>
<dd>Defines a section that is quoted from another source</dd>
</dl>
<p><code>figure</code>:</p>
<figure>
<img src="http://placekitten.com/200/300">
<figcaption>Figure 1: A picture of a kitten from <a href="http://placekitten.com/200/300/">placekitten.com</a>
</figcaption>
</figure>
<br>
<hr>
<h4 id="forms"><a href="#forms">#</a> Forms</h4>
<form>
<p>
<label for="example-input-email">Email address</label>
<input type="email" id="example-input-email">
</p>
<p>
<label for="example-input-number">Number</label>
<input type="number" id="example-input-number">
</p>
<p>
<label for="example-input-password">Password</label>
<input type="password" id="example-input-password">
</p>
<p>
<label for="example-input-search">Search</label>
<input type="search" id="example-input-search">
</p>
<p>
<label for="example-input-tel">Telephone number</label>
<input type="tel" id="example-input-tel">
</p>
<p>
<label for="example-input-text">Text</label>
<input type="text" id="example-input-text">
</p>
<p>
<label for="example-input-readonly">Read-only</label>
<input type="text" id="example-input-readonly" readonly value="Can't touch this!">
</p>
<p>
<label for="example-input-disabled">Disabled</label>
<input type="text" id="example-input-disabled" disabled value="Not available">
</p>
<p>
<label for="example-input-url">URL</label>
<input type="url" id="example-input-url">
</p>
<p>
<label for="example-input-color">Color</label>
<input type="color" id="example-input-color">
</p>
<p>
<label for="example-input-date">Date</label>
<input type="date" id="example-input-date">
</p>
<p>
<label for="example-input-date-time">Date / Time</label>
<input type="datetime" id="example-input-date-time">
</p>
<p>
<label for="example-input-date-time-local">Date / Time local</label>
<input type="datetime-local" id="example-input-date-time-local">
</p>
<p>
<label for="example-input-month">Month</label>
<input type="month" id="example-input-month">
</p>
<p>
<label for="example-input-week">Week</label>
<input type="week" id="example-input-week">
</p>
<p>
<label for="example-input-time">Time</label>
<input type="time" id="example-input-time">
</p>
<p>
<label for="example-input-file">File input</label>
<input type="file" id="example-input-file">
</p>
<p>
<label for="example-input-range">Range input</label>
<input type="range" id="example-input-range" min="1" max="4" value="3">
</p>
<p>
<label for="example-select1">Select</label>
<select id="example-select1">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</p>
<p>
<label for="example-select1a">Select with size</label>
<select id="example-select1a" size="2">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</p>
<p>
<label for="example-select2">Multiple select</label>
<select multiple id="example-select2">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</p>
<p>
<label for="example-optgroup">Select with optgroup: Favorite Car</label>
<select id="example-optgroup">
<optgroup label="Swedish Cars">
<option>Volvo</option>
<option>Saab</option>
</optgroup>
<optgroup label="German Cars">
<option>Mercedes</option>
<option>Audi</option>
</optgroup>
</select>
</p>
<p>
<label for="example-optgroup2">Select with optgroup and size:Favorite Dish</label>
<select id="example-optgroup2" size="2">
<optgroup label="Vegetarian">
<option>Green Salad</option>
<option>French Fries</option>
</optgroup>
<optgroup label="Carnivorous">
<option>Big Mac</option>
<option>Roast Beef</option>
</optgroup>
</select>
</p>
<p>
<label for="example-optgroup3">Multiple select with optgroup: Public transport</label>
<select id="example-optgroup3" multiple>
<optgroup label="Ground">
<option>Train</option>
<option>Bus</option>
</optgroup>
<optgroup label="Water">
<option>Ship</option>
<option>Submarine</option>
</optgroup>
<optgroup label="Air">
<option>Plane</option>
<option>Balloon</option>
</optgroup>
</select>
</p>
<p>
<label for="example-textarea">Textarea</label>
<textarea id="example-textarea" rows="3"></textarea>
</p>
<fieldset>
<legend>I am legend</legend>
<div>
<input type="radio" name="option-radio" id="option-radio1" value="option1" checked>
<label for="option-radio1">Option one is this and that—be sure to include why it's great</label>
</div>
<div>
<input type="radio" name="option-radio" id="option-radio2" value="option2">
<label for="option-radio2">Option two can be something else and selecting it will deselect option one</label>
</div>
<div>
<input type="radio" name="option-radio" id="option-radio3" value="option3" disabled>
<label for="option-radio3">Option three is disabled</label>
</div>
</fieldset>
<fieldset>
<legend>I am also legend</legend>
<input type="checkbox" id="checkbox1">
<label for="checkbox1">Check me out</label>
<input type="checkbox" id="checkbox2">
<label for="checkbox2">and/or check me out</label>
</fieldset>
<p>
<button type="button" name="button">Button</button>
<input type="button" name="input" value="Input Button">
<input type="submit" name="submit" value="Input Submit">
<button type="submit" name="submit2">Submit</button>
<input type="reset" name="reset" value="Input Reset">
<button type="reset" name="reset2">Reset</button>
<button disabled>Cancel</button>
</p>
</form>
<br>
<hr>
<p><code>output</code>:</p>
<form onsubmit="return false" oninput="o.value= a.valueAsNumber + b.valueAsNumber">
<input name=a type=number step=any> +
<input name=b type=number step=any> =
<output name=o for="a b"></output>
</form>
<br>
<hr>
<p><code>ul</code> and <code>ol</code>:</p>
<ul>
<li>Unordered List item one
<ul>
<li>Nested list item
<ul>
<li>Level 3, item one</li>
<li>Level 3, item two</li>
<li>Level 3, item three</li>
<li>Level 3, item four</li>
</ul>
</li>
<li>List item two</li>
<li>List item three</li>
<li>List item four</li>
</ul>
</li>
<li>List item two</li>
<li>List item three</li>
<li>List item four</li>
</ul>
<ol>
<li>List item one
<ol>
<li>List item one
<ol>
<li>List item one</li>
<li>List item two</li>
<li>List item three</li>
<li>List item four</li>
</ol>
</li>
<li>List item two</li>
<li>List item three</li>
<li>List item four</li>
</ol>
</li>
<li>List item two</li>
<li>List item three</li>
<li>List item four</li>
</ol>
<br>
<hr>
<p><code>pre</code>:</p>
<pre>
pre {
display: block;
padding: 7px;
background-color: #F5F5F5;
border: 1px solid #E1E1E8;
border-radius: 3px;
white-space: pre-wrap;
word-break: break-all;
font-family: Menlo, Monaco;
line-height: 160%;
}</pre>
<pre><samp>You are in an open field west of a big white house with a boarded
front door.
There is a small mailbox here.
></samp> <kbd>open mailbox</kbd>
<samp>Opening the mailbox reveals:
A leaflet.
></samp></pre>
<br>
<hr>
<h4 id="tables"><a href="#tables">#</a> Tables</h4>
<table>
<caption>Tables can have captions now.</caption>
<tbody>
<tr>
<th>Person</th>
<th>Number</th>
<th>Third Column</th>
</tr>
<tr>
<td>Someone Lastname</td>
<td>900</td>
<td>Nullam quis risus eget urna mollis ornare vel eu leo.</td>
</tr>
<tr>
<td><a href="#">Person Name</a></td>
<td>1200</td>
<td>Vestibulum id ligula porta felis euismod semper. Donec ullamcorper nulla non metus auctor fringilla.</td>
</tr>
<tr>
<td>Another Person</td>
<td>1500</td>
<td>Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Nullam id dolor id nibh ultricies vehicula ut id elit.</td>
</tr>
<tr>
<td>Last One</td>
<td>2800</td>
<td>Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Cras mattis consectetur purus sit amet fermentum.</td>
</tr>
</tbody>
</table>
<p id="table-summary">In the following table, characteristics are given in the second column, with the negative side in the left column and the positive side in the right column.</p>
<table aria-describedby="table-summary">
<caption>Characteristics with positive and negative sides</caption>
<thead>
<tr>
<th id="n">Negative</th>
<th>Characteristic</th>
<th id="p">Positive</th>
</tr>
</thead>
<tbody>
<tr>
<td headers="n r1">Sad</td>
<th id="r1">Mood</th>
<td headers="p r1">Happy</td>
</tr>
<tr>
<td headers="n r2">Failing</td>
<th id="r2">Grade</th>
<td headers="p r2">Passing</td>
</tr>
</tbody>
</table>
<table>
<caption>Complex table with a <code>thead</code>, multiple <code>tbody</code> elements, and a <code>tfoot</code>.</caption>
<thead>
<tr>
<th></th>
<th>2008</th>
<th>2007</th>
<th>2006</th>
</tr>
</thead>
<tbody>
<tr>
<th>Net sales</th>
<td>$32,479</td>
<td>$24,006</td>
<td>$19,315</td>
</tr>
<tr>
<th>Cost of sales</th>
<td>21,334</td>
<td>15,852</td>
<td>13,717</td>
</tr>
</tbody>
<tbody>
<tr>
<th>Gross margin</th>
<td>$11,145</td>
<td>$8,154</td>
<td>$5,598</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>Gross margin percentage</th>
<td>34.3%</td>
<td>34.0%</td>
<td>29.0%</td>
</tr>
</tfoot>
</table>
<table>
<caption>A Table with <code>col</code> and <code>colgroup</code> of proto-indo-europeans languages and words.</caption>
<col />
<colgroup>
<col />
<col />
<col />
<col />
</colgroup>
<colgroup>
<col />
<col />
<col />
<col />
</colgroup>
<thead>
<tr>
<td></td>
<th colspan="4" id="germanic">Germanic</th>
<th colspan="4" id="italic">Italic</th>
</tr>
<tr>
<td></td>
<th colspan="2" id="north-germanic" headers="germanic">North Germanic</th>
<th colspan="2" id="west-germanic" headers="germanic">West Germanic</th>
<th colspan="4" id="latin" headers="italic">Latin</th>
</tr>
<tr>
<th id="modern-english">Modern English</th>
<th id="old-norse" headers="north-germanic germanic">Old Norse</th>
<th id="swedish" headers="north-germanic germanic">Swedish</th>
<th id="old-english" headers="west-germanic germanic">Old English</th>
<th id="old-dutch" headers="west-germanic germanic">Old Dutch</th>
<th id="french" headers="latin italic">French</th>
<th id="spanish" headers="latin italic">Spanish</th>
<th id="portuguese" headers="latin italic">Portuguese</th>
<th id="catalan" headers="latin italic">Catalan</th>
</tr>
</thead>
<tbody>
<tr>
<th headers="modern-english" id="modern-english-no">No</th>
<td headers="modern-english-no germanic north-germanic old-norse">Nei</td>
<td headers="modern-english-no germanic north-germanic swedish">Nej</td>
<td headers="modern-english-no germanic west-germanic old-english">Ná</td>
<td headers="modern-english-no germanic west-germanic old-dutch">Nein</td>
<td headers="modern-english-no latin italic french">Non</td>
<td headers="modern-english-no latin italic spanish">No</td>
<td headers="modern-english-no latin italic portuguese">não</td>
<td headers="modern-english-no latin italic catalan">No</td>
</tr>
<tr>
<th headers="modern-english" id="modern-english-yes">Yes</th>
<td headers="modern-english-yes germanic north-germanic old-norse">já</td>
<td headers="modern-english-yes germanic north-germanic swedish">Ja</td>
<td headers="modern-english-yes germanic west-germanic old-english">Gea</td>
<td headers="modern-english-yes germanic west-germanic old-dutch">Ja</td>
<td headers="modern-english-yes latin italic french">Oui</td>
<td headers="modern-english-yes latin italic spanish">Si</td>
<td headers="modern-english-yes latin italic portuguese">sim</td>
<td headers="modern-english-yes latin italic catalan">sí</td>
</tr>
<tr>
<th headers="modern-english" id="modern-english-bear">Bear</th>
<td headers="modern-english-bear germanic north-germanic old-norse">Bjorn</td>
<td headers="modern-english-bear germanic north-germanic swedish">bjorn</td>
<td headers="modern-english-bear germanic west-germanic old-english">bera</td>
<td headers="modern-english-bear germanic west-germanic old-dutch">beer</td>
<td headers="modern-english-bear latin italic french">Ours</td>
<td headers="modern-english-bear latin italic spanish">Oso</td>
<td headers="modern-english-bear latin italic portuguese">Urso</td>
<td headers="modern-english-bear latin italic catalan">ós</td>
</tr>
</tbody>
</table>
<footer>
<p>See the <a target="_blank" href="https://www.w3.org/TR/html5/dom.html#palpable-content">Palpable
Content spec.</a></p>
</footer>
</section>
<hr>
<section id="embeds">
<header>
<h3><a href="#embeds">#</a> Embeds</h3>
<p>Elements <code>audio</code>, <code>canvas</code>, <code>embed</code>,
<code>iframe</code>, <code>img</code>, <code>math</code>, <code>object</code>,
<code>picture</code>, <code>svg</code>, <code>video</code> make up the <em>embedded content</em> category.</p>
</header>
<p><code>audio</code>: <audio controls src="https://upload.wikimedia.org/wikipedia/commons/c/c7/What_hath_God_wrought.ogg"></audio> By Cqdx [<a href="https://creativecommons.org/licenses/by-sa/3.0">CC BY-SA 3.0 </a>], <a href="https://commons.wikimedia.org/wiki/File:What_hath_God_wrought.ogg">from Wikimedia Commons</a>.</p>
<p><code>iframe</code>: <iframe sandbox srcdoc="<h1>Sample Document</h1><p>This
is a sample content.</p>"></iframe></p>
<p><code>img</code>: <img src="http://placekitten.com/150/150 " alt="a kitten"></p>
<p><code>math</code>:</p>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mtable>
<mtr>
<mtd>
<mtext>Quadratic Equation</mtext>
</mtd>
<mtd>
<mrow>
<mi>x</mi>
<mo>=</mo>
<mfrac>
<mrow>
<mo>-</mo>
<mi>b</mi>
<mo>±</mo>
<msqrt>
<mrow>
<msubsup>
<mi>b</mi>
<mrow></mrow>
<mn>2</mn>
</msubsup>
<mo>-</mo>
<mn>4</mn>
<mi>a</mi>
<mi>c</mi>
</mrow>
</msqrt>
</mrow>
<mrow>
<mn>2</mn>
<mi>a</mi>
</mrow>
</mfrac>
</mrow>
</mtd>
</mtr>
</mtable>
</math>
<p><code>picture</code>:
<picture>
<source srcset="http://placekitten.com/240/300 2x,
http://placekitten.com/120/150 1x">
<img src="http://placekitten.com/120/150" alt="a kitten">
</picture>
</p>
<p><code>svg</code>: <svg role="presentation" width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M19.199 24C19.199 13.467
10.533 4.8 0 4.8V0c13.165 0 24 10.835 24 24h-4.801zM3.291
17.415c1.814 0 3.293 1.479 3.293 3.295 0 1.813-1.485 3.29-3.301
3.29C1.47 24 0 22.526 0 20.71s1.475-3.294 3.291-3.295zM15.909
24h-4.665c0-6.169-5.075-11.245-11.244-11.245V8.09c8.727 0 15.909
7.184 15.909 15.91z" /></svg></p>
<p><code>video</code>: <video controls src="https://upload.wikimedia.org/wikipedia/commons/b/b8/Dwarf_hamsters_running_on_disc_2.ogv"></video></p>
<footer>
<p>See the <a target="_blank" href="https://www.w3.org/TR/html5/dom.html#embedded-content">Embedded Content spec.</a></p>
</footer>
</section>
</main>
<hr>
<footer role="contentinfo">
<p>This section serves as the <code>footer</code>.</p>
<p>Find this document on <a href="https://github.com/dbox/html5-kitchen-sink">GitHub</a>.</p>
</footer>
</body>
</html>