SEO Software
+ Reply to Thread
Results 1 to 9 of 9

Thread: Add headings and paragraphs

  1. #1

    Default Add headings and paragraphs

    Hi,
    If you have used Microsoft Word, you will be familiar with the built in styles for headings of differing importance. In HTML there are six levels of headings. H1 is the most important, H2 is slightly less important, and so on down to H6, the least important.

    Here is how to add an important heading:

    <h1>An important heading</h1>

    and here is a slightly less important heading:

    <h2>A slightly less important heading</h2>

    Each paragraph you write should start with a <p> tag. The </p> is optional, unlike the end tags for elements like headings. For example:

    <p>This is the first paragraph.</p>

    <p>This is the second paragraph.</p>
    Thanks & regards,
    Lokananth
    Live Chat Software By miOOt


  2. Micro Niche Builder

  3. #2
    Fulltime Member Alan has a reputation beyond repute Alan has a reputation beyond repute Alan has a reputation beyond repute Alan has a reputation beyond repute Alan has a reputation beyond repute Alan has a reputation beyond repute Alan has a reputation beyond repute Alan has a reputation beyond repute Alan has a reputation beyond repute Alan has a reputation beyond repute Alan has a reputation beyond repute Alan's Avatar
    Join Date
    Jan 2009
    Location
    Ayr. Scotland
    Posts
    766
    Thanks
    26
    Thanked 62 Times in 57 Posts
    Blog Entries
    1

    Default

    Quote Originally Posted by gilbertsavier View Post
    Hi,

    The </p> is optional, unlike the end tags for elements like headings.
    Go back to school. The closing paragraph tag is not, never has been, and never will be optional. It only appears optional as brosers make some alowance depanding on the DTD used. I sugges you refer to the web standards organisation web page for HTML at W3C HTML.


    Seen a good post - give some reputation
    Keeping the forum clean - SPAMMERS BEWARE!!

  4. #3
    Junior Member alibaba-clone is on a distinguished road alibaba-clone's Avatar
    Join Date
    Dec 2009
    Location
    Johannesburg, South Africa
    Posts
    92
    Thanks
    0
    Thanked 4 Times in 4 Posts

    Default

    good small html stuff.. keep it up.

    regards,

    Nadir Ali Shah

  5. #4

    Default

    Quick Tip: You should use H1 as your main heading and only use it once on a page and be sure to use it on all pages.

  6. #5

    Default

    Try to use also the <b> or <strong> tag for the important keyword that you want to emphasize.

  7. #6

    Default

    If you want your website to appear in proper format in all the browsers never skip the closing tag of any tag ... it is possible a website is appearing properly in one browser without using the closing tag but it will definitely cause some error in other browsers...

  8. #7

    Default

    I think </p> is not optional but essential not including that end tag will result to making your webpage a paragraph format.

  9. #8

    Default

    All tags require a closing tag to be valid. If you do not close tags then you are going to run into serious problems when it comes to maintaining your code.

  10. #9

    Default

    The two codes are good to know. But I want to more web design Tags for styling.

+ Reply to Thread

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