Results 1 to 3 of 3

Thread: Tips on Headings

  1. #1
    Join Date
    Nov 2009
    Posts
    76,596

    Default Tips on Headings

    These html tips and tricks will show you different types of headings.

    Look at the following html code:
    <h2>Heading 2</h2>
    It creates this heading:
    Heading 2


    Now looking at this html code:
    <h3>Heading 3</h3>
    It now creates this slightly smaller heading:
    Heading 3


    The 2 and 3 in H2 and H3 can be changed to any number between 1 and 6 to make different sorts of headings.
    Here is an example of some code that uses headings:
    <h4>Heading 4</h4>
    Heading 4 is the fourth most important heading.

    <h5>Heading 5</h5>
    Heading 5 is the fifth most important heading.

    The code results in the following:
    Heading 4

    Heading 4 is the fourth most important heading.
    Heading 5

    Heading 5 is the fifth most important heading.


    Keywords:
    html tips, html code,smaller heading,Tips for Formatting Text,Tips on Headings

  2. #2
    Join Date
    May 2011
    Posts
    6

    Default

    good word ;)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •