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
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/1999/PR-xhtml1-19991210/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head><title>Headings Nesting/Outline Test</title></head>
<body>
<!-- From 1 to 6... -->
<h1>Level #1 (1 to 6)</h1>
<h2>Level #2 (1 to 6)</h2>
<h3>Level #3 (1 to 6)</h3>
<h4>Level #4 (1 to 6)</h4>
<h5>Level #5 (1 to 6)</h5>
<h6>Level #6 (1 to 6)</h6>
<!-- ...and back again. -->
<h6>Level #6 (6 to 1)</h6>
<h5>Level #5 (6 to 1)</h5>
<h4>Level #4 (6 to 1)</h4>
<h3>Level #3 (6 to 1)</h3>
<h2>Level #2 (6 to 1)</h2>
<h1>Level #1 (6 to 1)</h1>
<!-- Skipping from 1 to 6. -->
<h1>Level #1 (skip up)</h1>
<h6>Level #6 (skip up)</h6>
<!-- Skipping from 6 to 1. -->
<h6>Level #6 (skip down)</h6>
<h1>Level #1 (skip down)</h1>
<!-- Climb down to 6 and leave it for autoclose. -->
<h1>Level #1 (1 to 6)</h1>
<h2>Level #2 (1 to 6)</h2>
<h3>Level #3 (1 to 6)</h3>
<h4>Level #4 (1 to 6)</h4>
<h5>Level #5 (1 to 6)</h5>
<h6>Level #6 (1 to 6)</h6>
</body>
</html>
|