HTML offers six levels of headings, using paired tags, from Heading 1 ( <h1> ... </h1>
) to Heading 6 ( <h6> ... </h6>
).
Each browser displays the headings in boldface, using its default font and descending font sizes, from Heading 1 (the biggest) to
Heading 6 (the smallest).
- You can add CSS styles to change the Heading's font size, color, and other properties..
Use <h1>, <h2>, ..., for headings only.
Headings are important, search engines use document headings to index the structure and content of your web pages.
<!DOCTYPE html> <html> <head> <title>Example Headings</title> </head> <body> <h1>Heading 1</h1> <h2>Heading 2</h2> <h3>Heading 3</h3> <h4>Heading 4</h4> <h5>Heading 5</h5> <h6>Heading 6</h6> </body> </html>
Comments are used to insert notes into the document that are not displayed by the browser.
To add a comment, use the <!-- --> tag, placing the comment between the two pairs of dashes.
<h4>Example HTML with Comments</h4> <!-- This is a comment, Start Menu --> <ul> <li>Menu one</li> <li>Menu two</li> </ul> <!-- End Menu -->
<input type="date" name="set_date" value="2012-10-15" />
h2 { text-shadow: 2px 3px 3px #a0a1fe; }
var pags = ["lessons", "courses"]; pags.push("download", "tutorials"); alert(pags[2]); // download
$lang =[10=>"PHP", 20=>"JavaScript", "site"=>"coursesweb.net"); ksort($lang); var_export($lang); // array ("site"=>"coursesweb.net", 10=>"PHP", 20=>"JavaScript")