This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
615 lines (615 loc) · 19.8 KB
/
test.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
<!DOCTYPE HTML>
<html lang="en-GB">
<head>
<meta charset="UTF-8">
<title>reset.css</title>
<link href="reset.css" rel="stylesheet" type="text/css" />
</head>
<body>
body text.
<a href="http://example.com">link to example.com</a>
<code>computer_code = "something";</code>
<em>em text.</em>
<mark>marked text.</mark>
<q>quoted text</q>
<strong>strong text.</strong>
<blockquote><p>blockquote</p></blockquote>
<h1>heading 1</h1>
<h2>heading 2</h2>
<h3>heading 3</h3>
<h4>heading 4</h4>
<h5>heading 5</h5>
<h6>heading 6</h6>
<p>paragrah text</p>
<menu type="toolbar">
<nav>
<ul>
<li>menu nav item 1</li>
<li>menu nav item 2</li>
<li>menu nav item 3</li>
</ul>
</nav>
</menu>
<div>
div text
<a href="http://example.com">div link to example.com</a>
<code>div_computer_code = "something";</code>
<em>div em text.</em>
<mark>div marked text.</mark>
<q>div quoted text</q>
<strong>div strong text.</strong>
<blockquote><p>div blockquote</p></blockquote>
<h1>div heading 1</h1>
<h2>div heading 2</h2>
<h3>div heading 3</h3>
<h4>div heading 4</h4>
<h5>div heading 5</h5>
<h6>div heading 6</h6>
<p>div paragrah text</p>
</div>
<dl>
<dt>definition term 1.</dt>
<dd>definition description 1.</dd>
<dt>definition term 2.</dt>
<dd>definition description 2.
<ol>
<li>nested ordered list item 1.</li>
<li>nested ordered list item 2.</li>
</ol>
</dd>
<dt>definition term 3.</dt>
<dd>definition description 3.
<ul>
<li>nested unordered list item 1.</li>
<li>nested unordered list item 2.</li>
</ul>
</dd>
</dl>
<ol>
<li>ordered list item 1.</li>
<li>ordered list item 2.
<ol>
<li>nested ordered list item 1.</li>
<li>nested ordered list item 2.</li>
</ol>
</li>
<li>ordered list item 3.
<ul>
<li>nested unordered list item 1.</li>
<li>nested unordered list item 2.</li>
</ul>
</li>
</ol>
<ul>
<li>unordered list item 1.</li>
<li>unordered list item 2.
<ol>
<li>nested ordered list item 1.</li>
<li>nested ordered list item 2.</li>
</ol>
</li>
<li>unordered list item 3.
<ul>
<li>nested unordered list item 1.</li>
<li>nested unordered list item 2.</li>
</ul>
</li>
</ul>
<header>
<h1>header heading 1</h1>
<h2>header heading 2</h2>
<h3>header heading 3</h3>
<h4>header heading 4</h4>
<h5>header heading 5</h5>
<h6>header heading 6</h6>
</header>
<hgroup>
<h1>hgroup heading 1</h1>
<h2>hgroup heading 2</h2>
<h3>hgroup heading 3</h3>
<h4>hgroup heading 4</h4>
<h5>hgroup heading 5</h5>
<h6>hgroup heading 6</h6>
</hgroup>
<form action="#" method="post">
<fieldset>
<p><label for="input-text">text label</label><input id="input-text" name="input-text" type="text" /></p>
<p><label for="input-search">search label</label><input id="input-search" name="input-search" type="search" /></p>
</fieldset>
<fieldset>
<legend>i am legend</legend>
<p><label for="select-list">select label</label><select id="select-list" name="select-list">
<option value="1">option 1</option>
<option value="2">option 2</option>
<optgroup label="optgroup 1">
<option value="1.1">optgroup 1 option 1</option>
<option value="1.2">optgroup 1 option 2</option>
</optgroup>
<optgroup label="optgroup 2">
<option value="2.1">optgroup 2 option 1</option>
<option value="2.2">optgroup 2 option 2</option>
</optgroup>
</select></p>
<p><label for="input-radio">radio label</label><input id="input-radio" name="input-radio" type="radio" /></p>
<p><label for="input-checkbox">checkbox label</label><input id="input-checkbox" name="input-checkbox" type="checkbox" /></p>
</fieldset>
<input type="reset" value="reset" />
<button type="button">submit</button>
</form>
<table border="0" cellpadding="0" cellspacing="0">
<caption>table o' stuff</caption>
<thead>
<tr><th>h.1</th><th>h.2</th><th>h.3</th></tr>
</thead>
<tfoot>
<tr><th>f.1</th><th>f.2</th><th>f.3</th></tr>
</tfoot>
<tbody>
<tr><td>b.1</td><td>b.2</td><td>b.3</td></tr>
<tr><td>b.4</td><td>b.5</td><td>b.6</td></tr>
</tbody>
</table>
<pre><code>!function() {
alert( 'hello world!' );
}();</code></pre>
<meter value=".75"></meter>
<progress value=".57"></progress>
lorem ipsum dolor sit amet
<br />
<section>
section body text.
<a href="http://example.com">section link to example.com</a>
<code>section_computer_code = "something";</code>
<em>section em text.</em>
<mark>section marked text.</mark>
<q>section quoted text</q>
<strong>section strong text.</strong>
<blockquote><p>section blockquote</p></blockquote>
<header>
<h1>section header heading 1</h1>
<h2>section header heading 2</h2>
<h3>section header heading 3</h3>
<h4>section header heading 4</h4>
<h5>section header heading 5</h5>
<h6>section header heading 6</h6>
</header>
<hgroup>
<h1>section hgroup heading 1</h1>
<h2>section hgroup heading 2</h2>
<h3>section hgroup heading 3</h3>
<h4>section hgroup heading 4</h4>
<h5>section hgroup heading 5</h5>
<h6>section hgroup heading 6</h6>
</hgroup>
<h1>section heading 1</h1>
<h2>section heading 2</h2>
<h3>section heading 3</h3>
<h4>section heading 4</h4>
<h5>section heading 5</h5>
<h6>section heading 6</h6>
<p>section paragrah text</p>
<menu type="toolbar">
<nav>
<ul>
<li>section menu nav item 1</li>
<li>section menu nav item 2</li>
<li>section menu nav item 3</li>
</ul>
</nav>
</menu>
<div>
section div text
<a href="http://example.com">section div link to example.com</a>
<code>section_div_computer_code = "something";</code>
<em>section div em text.</em>
<mark>section div marked text.</mark>
<q>section div quoted text</q>
<strong>section div strong text.</strong>
<blockquote><p>section div blockquote</p></blockquote>
<h1>section div heading 1</h1>
<h2>section div heading 2</h2>
<h3>section div heading 3</h3>
<h4>section div heading 4</h4>
<h5>section div heading 5</h5>
<h6>section div heading 6</h6>
<p>section div paragrah text</p>
</div>
<dl>
<dt>section definition term 1.</dt>
<dd>section definition description 1.</dd>
<dt>section definition term 2.</dt>
<dd>section definition description 2.
<ol>
<li>section nested ordered list item 1.</li>
<li>section nested ordered list item 2.</li>
</ol>
</dd>
<dt>section definition term 3.</dt>
<dd>section definition description 3.
<ul>
<li>section nested unordered list item 1.</li>
<li>section nested unordered list item 2.</li>
</ul>
</dd>
</dl>
<ol>
<li>section ordered list item 1.</li>
<li>section ordered list item 2.
<ol>
<li>section nested ordered list item 1.</li>
<li>section nested ordered list item 2.</li>
</ol>
</li>
<li>section ordered list item 3.
<ul>
<li>section nested unordered list item 1.</li>
<li>section nested unordered list item 2.</li>
</ul>
</li>
</ol>
<ul>
<li>section unordered list item 1.</li>
<li>section unordered list item 2.
<ol>
<li>section nested ordered list item 1.</li>
<li>section nested ordered list item 2.</li>
</ol>
</li>
<li>section unordered list item 3.
<ul>
<li>section nested unordered list item 1.</li>
<li>section nested unordered list item 2.</li>
</ul>
</li>
</ul>
<form action="#" method="post">
<fieldset>
<p><label for="section-input-text">section text label</label><input id="section-input-text" name="section-input-text" type="text" /></p>
<p><label for="section-input-search">section search label</label><input id="section-input-search" name="section-input-search" type="search" /></p>
</fieldset>
<fieldset>
<legend>i am legend</legend>
<p><label for="section-select-list">section select label</label><select id="section-select-list" name="section-select-list">
<option value="1">section option 1</option>
<option value="2">section option 2</option>
<optgroup label="section optgroup 1">
<option value="1.1">section optgroup 1 option 1</option>
<option value="1.2">section optgroup 1 option 2</option>
</optgroup>
<optgroup label="section optgroup 2">
<option value="2.1">section optgroup 2 option 1</option>
<option value="2.2">section optgroup 2 option 2</option>
</optgroup>
</select></p>
<p><label for="section-input-radio">section radio label</label><input id="section-input-radio" name="section-input-radio" type="radio" /></p>
<p><label for="section-input-checkbox">section checkbox label</label><input id="section-input-checkbox" name="section-input-checkbox" type="checkbox" /></p>
</fieldset>
<input type="reset" value="section reset" />
<button type="button">section submit</button>
</form>
<table border="0" cellpadding="0" cellspacing="0">
<caption>section table o' stuff</caption>
<thead>
<tr><th>s.h.1</th><th>s.h.2</th><th>s.h.3</th></tr>
</thead>
<tfoot>
<tr><th>s.f.1</th><th>s.f.2</th><th>s.f.3</th></tr>
</tfoot>
<tbody>
<tr><td>s.b.1</td><td>s.b.2</td><td>s.b.3</td></tr>
<tr><td>s.b.4</td><td>s.b.5</td><td>s.b.6</td></tr>
</tbody>
</table>
<pre><code>!function() {
alert( 'hello world!' );
}();</code></pre>
<meter value=".75"></meter>
<progress value=".57"></progress>
lorem ipsum dolor sit amet
</section>
<br />
<article>
article body text.
<a href="http://example.com">article link to example.com</a>
<code>article_computer_code = "something";</code>
<em>article em text.</em>
<mark>article marked text.</mark>
<q>article quoted text</q>
<strong>article strong text.</strong>
<blockquote><p>article blockquote</p></blockquote>
<header>
<h1>article header heading 1</h1>
<h2>article header heading 2</h2>
<h3>article header heading 3</h3>
<h4>article header heading 4</h4>
<h5>article header heading 5</h5>
<h6>article header heading 6</h6>
</header>
<hgroup>
<h1>article hgroup heading 1</h1>
<h2>article hgroup heading 2</h2>
<h3>article hgroup heading 3</h3>
<h4>article hgroup heading 4</h4>
<h5>article hgroup heading 5</h5>
<h6>article hgroup heading 6</h6>
</hgroup>
<h1>article heading 1</h1>
<h2>article heading 2</h2>
<h3>article heading 3</h3>
<h4>article heading 4</h4>
<h5>article heading 5</h5>
<h6>article heading 6</h6>
<p>article paragrah text</p>
<menu type="toolbar">
<nav>
<ul>
<li>article menu nav item 1</li>
<li>article menu nav item 2</li>
<li>article menu nav item 3</li>
</ul>
</nav>
</menu>
<div>
article div text
<a href="http://example.com">article div link to example.com</a>
<code>article_div_computer_code = "something";</code>
<em>article div em text.</em>
<mark>article div marked text.</mark>
<q>article div quoted text</q>
<strong>article div strong text.</strong>
<blockquote><p>article div blockquote</p></blockquote>
<h1>article div heading 1</h1>
<h2>article div heading 2</h2>
<h3>article div heading 3</h3>
<h4>article div heading 4</h4>
<h5>article div heading 5</h5>
<h6>article div heading 6</h6>
<p>article div paragrah text</p>
</div>
<dl>
<dt>article definition term 1.</dt>
<dd>article definition description 1.</dd>
<dt>article definition term 2.</dt>
<dd>article definition description 2.
<ol>
<li>article nested ordered list item 1.</li>
<li>article nested ordered list item 2.</li>
</ol>
</dd>
<dt>article definition term 3.</dt>
<dd>article definition description 3.
<ul>
<li>article nested unordered list item 1.</li>
<li>article nested unordered list item 2.</li>
</ul>
</dd>
</dl>
<ol>
<li>article ordered list item 1.</li>
<li>article ordered list item 2.
<ol>
<li>article nested ordered list item 1.</li>
<li>article nested ordered list item 2.</li>
</ol>
</li>
<li>article ordered list item 3.
<ul>
<li>article nested unordered list item 1.</li>
<li>article nested unordered list item 2.</li>
</ul>
</li>
</ol>
<ul>
<li>article unordered list item 1.</li>
<li>article unordered list item 2.
<ol>
<li>article nested ordered list item 1.</li>
<li>article nested ordered list item 2.</li>
</ol>
</li>
<li>article unordered list item 3.
<ul>
<li>article nested unordered list item 1.</li>
<li>article nested unordered list item 2.</li>
</ul>
</li>
</ul>
<form action="#" method="post">
<fieldset>
<p><label for="article-input-text">article text label</label><input id="article-input-text" name="article-input-text" type="text" /></p>
<p><label for="article-input-search">article search label</label><input id="article-input-search" name="article-input-search" type="search" /></p>
</fieldset>
<fieldset>
<legend>i am legend</legend>
<p><label for="article-select-list">article select label</label><select id="article-select-list" name="article-select-list">
<option value="1">article option 1</option>
<option value="2">article option 2</option>
<optgroup label="article optgroup 1">
<option value="1.1">article optgroup 1 option 1</option>
<option value="1.2">article optgroup 1 option 2</option>
</optgroup>
<optgroup label="article optgroup 2">
<option value="2.1">article optgroup 2 option 1</option>
<option value="2.2">article optgroup 2 option 2</option>
</optgroup>
</select></p>
<p><label for="article-input-radio">article radio label</label><input id="article-input-radio" name="article-input-radio" type="radio" /></p>
<p><label for="article-input-checkbox">article checkbox label</label><input id="article-input-checkbox" name="article-input-checkbox" type="checkbox" /></p>
</fieldset>
<input type="reset" value="article reset" />
<button type="button">article submit</button>
</form>
<table border="0" cellpadding="0" cellspacing="0">
<caption>article table o' stuff</caption>
<thead>
<tr><th>s.h.1</th><th>s.h.2</th><th>s.h.3</th></tr>
</thead>
<tfoot>
<tr><th>s.f.1</th><th>s.f.2</th><th>s.f.3</th></tr>
</tfoot>
<tbody>
<tr><td>s.b.1</td><td>s.b.2</td><td>s.b.3</td></tr>
<tr><td>s.b.4</td><td>s.b.5</td><td>s.b.6</td></tr>
</tbody>
</table>
<pre><code>!function() {
alert( 'hello world!' );
}();</code></pre>
<meter value=".75"></meter>
<progress value=".57"></progress>
lorem ipsum dolor sit amet
</article>
<br />
<aside>
aside body text.
<a href="http://example.com">aside link to example.com</a>
<code>aside_computer_code = "something";</code>
<em>aside em text.</em>
<mark>aside marked text.</mark>
<q>aside quoted text</q>
<strong>aside strong text.</strong>
<blockquote><p>aside blockquote</p></blockquote>
<header>
<h1>aside header heading 1</h1>
<h2>aside header heading 2</h2>
<h3>aside header heading 3</h3>
<h4>aside header heading 4</h4>
<h5>aside header heading 5</h5>
<h6>aside header heading 6</h6>
</header>
<hgroup>
<h1>aside hgroup heading 1</h1>
<h2>aside hgroup heading 2</h2>
<h3>aside hgroup heading 3</h3>
<h4>aside hgroup heading 4</h4>
<h5>aside hgroup heading 5</h5>
<h6>aside hgroup heading 6</h6>
</hgroup>
<h1>aside heading 1</h1>
<h2>aside heading 2</h2>
<h3>aside heading 3</h3>
<h4>aside heading 4</h4>
<h5>aside heading 5</h5>
<h6>aside heading 6</h6>
<p>aside paragrah text</p>
<menu type="toolbar">
<nav>
<ul>
<li>aside menu nav item 1</li>
<li>aside menu nav item 2</li>
<li>aside menu nav item 3</li>
</ul>
</nav>
</menu>
<div>
aside div text
<a href="http://example.com">aside div link to example.com</a>
<code>aside_div_computer_code = "something";</code>
<em>aside div em text.</em>
<mark>aside div marked text.</mark>
<q>aside div quoted text</q>
<strong>aside div strong text.</strong>
<blockquote><p>aside div blockquote</p></blockquote>
<h1>aside div heading 1</h1>
<h2>aside div heading 2</h2>
<h3>aside div heading 3</h3>
<h4>aside div heading 4</h4>
<h5>aside div heading 5</h5>
<h6>aside div heading 6</h6>
<p>aside div paragrah text</p>
</div>
<dl>
<dt>aside definition term 1.</dt>
<dd>aside definition description 1.</dd>
<dt>aside definition term 2.</dt>
<dd>aside definition description 2.
<ol>
<li>aside nested ordered list item 1.</li>
<li>aside nested ordered list item 2.</li>
</ol>
</dd>
<dt>aside definition term 3.</dt>
<dd>aside definition description 3.
<ul>
<li>aside nested unordered list item 1.</li>
<li>aside nested unordered list item 2.</li>
</ul>
</dd>
</dl>
<ol>
<li>aside ordered list item 1.</li>
<li>aside ordered list item 2.
<ol>
<li>aside nested ordered list item 1.</li>
<li>aside nested ordered list item 2.</li>
</ol>
</li>
<li>aside ordered list item 3.
<ul>
<li>aside nested unordered list item 1.</li>
<li>aside nested unordered list item 2.</li>
</ul>
</li>
</ol>
<ul>
<li>aside unordered list item 1.</li>
<li>aside unordered list item 2.
<ol>
<li>aside nested ordered list item 1.</li>
<li>aside nested ordered list item 2.</li>
</ol>
</li>
<li>aside unordered list item 3.
<ul>
<li>aside nested unordered list item 1.</li>
<li>aside nested unordered list item 2.</li>
</ul>
</li>
</ul>
<form action="#" method="post">
<fieldset>
<p><label for="aside-input-text">aside text label</label><input id="aside-input-text" name="aside-input-text" type="text" /></p>
<p><label for="aside-input-search">aside search label</label><input id="aside-input-search" name="aside-input-search" type="search" /></p>
</fieldset>
<fieldset>
<legend>i am legend</legend>
<p><label for="aside-select-list">aside select label</label><select id="aside-select-list" name="aside-select-list">
<option value="1">aside option 1</option>
<option value="2">aside option 2</option>
<optgroup label="aside optgroup 1">
<option value="1.1">aside optgroup 1 option 1</option>
<option value="1.2">aside optgroup 1 option 2</option>
</optgroup>
<optgroup label="aside optgroup 2">
<option value="2.1">aside optgroup 2 option 1</option>
<option value="2.2">aside optgroup 2 option 2</option>
</optgroup>
</select></p>
<p><label for="aside-input-radio">aside radio label</label><input id="aside-input-radio" name="aside-input-radio" type="radio" /></p>
<p><label for="aside-input-checkbox">aside checkbox label</label><input id="aside-input-checkbox" name="aside-input-checkbox" type="checkbox" /></p>
</fieldset>
<input type="reset" value="aside reset" />
<button type="button">aside submit</button>
</form>
<table border="0" cellpadding="0" cellspacing="0">
<caption>aside table o' stuff</caption>
<thead>
<tr><th>s.h.1</th><th>s.h.2</th><th>s.h.3</th></tr>
</thead>
<tfoot>
<tr><th>s.f.1</th><th>s.f.2</th><th>s.f.3</th></tr>
</tfoot>
<tbody>
<tr><td>s.b.1</td><td>s.b.2</td><td>s.b.3</td></tr>
<tr><td>s.b.4</td><td>s.b.5</td><td>s.b.6</td></tr>
</tbody>
</table>
<pre><code>!function() {
alert( 'hello world!' );
}();</code></pre>
<meter value=".75"></meter>
<progress value=".57"></progress>
lorem ipsum dolor sit amet
</aside>
</body>
</html>