HTML CSS IMAGES LINKS | |||||
HTML → Headings In HTML, headings are used to generates text that varies in size, based on the number assigned to the tag. The numbers range from one through six where one generates the largest text size and six is the smallest. You create headings by "tagging" specific blocks of text with heading tags. The format for an HTML heading tag is:
<hN>Text to Appear in Your Heading</hN>
Level 1 headings <h1> are the most prominent headings and level 6 headings <h6> are the least prominent. <h1>Level 1 Heading</h1><h2>Level 2 Heading</h2><h3>Level 3 Heading</h3><h4>Level 4 Heading</h4><h5>Level 5 Heading</h5><h6>Level 6 Heading</h6>Below is an example of how your web page should look.
Level 1 Heading
Level 2 Heading
Level 3 Heading
Level 4 Heading
Level 5 Heading
Level 6 Heading
|
|||||
back ↑ |