Created
November 12, 2011 12:19
-
-
Save adactio/1360458 to your computer and use it in GitHub Desktop.
Revisions
-
adactio created this gist
Nov 12, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ <!DOCTYPE html> <html lang="en"> <title>Sectioning Content test</title> <h1>This is an h1</h1> <p>That h1 is the heading for the body (a sectioning root).</p> <div> <h1>This is another h1</h1> <p>That h1 is inside a div so it is no different than the first h1.</p> </div> <section> <h1>This is also an h1</h1> <p>That h1 is the heading for a section (sectioning content). It acts like an h2 in the context of the whole document.</p> </section> <small>note the differences in default styling in some browsers</small>