<p> vs. <br> tags???

Discussion in 'Search Engine Optimization' started by axemedia, Sep 29, 2006.

  1. #1
    I've recently began converting some of my older hack job html sites (lets hear it for MS FrontPage) to CSS based to cut down on uneeded code to give the text content more prominence.

    The old paragrapgh tags that were like <p style="margin-left: 10; margin-top: 0; margin-bottom: 0"><font face="Arial" size="2"> are now just being replaced with <br> tags.

    Should i be using <p> and </p> instead of <br> and <br><br>

    or does it matter.

    The content is nice and juicy for the spiders to read either way. But may they give any preferance to seeing paragraphs instead of breaks?

    This just popped into my head after recoding dozens of pages. With the <br> tags of course.
     
    axemedia, Sep 29, 2006 IP
  2. jdevalk

    jdevalk Active Member

    Messages:
    417
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    68
    #2
    from an SEO perspective, it won't matter, semantically, using <p>'s would be better, as that is what they are, i guess...
     
    jdevalk, Sep 29, 2006 IP
  3. adacprogramming

    adacprogramming Well-Known Member

    Messages:
    1,615
    Likes Received:
    62
    Best Answers:
    0
    Trophy Points:
    125
    #3
    Typically I Use <br> when I want a new line with no space between and <p> when it is a paragraph and I want it spaced.

    This is more of a accessibility decision then a SEO decision. Text readers for the visually impared view each differently. I think they actually state "new line" and "new paragragh" or something like that. So hearing "new line" "new line" "new line" "new line" might get a little irritating after a while for the visitor. :)
     
    adacprogramming, Sep 29, 2006 IP
  4. bobby9101

    bobby9101 Peon

    Messages:
    3,292
    Likes Received:
    134
    Best Answers:
    0
    Trophy Points:
    0
    #4
    use <br /> not <br>
    I like to use <p></p> tags, only when I have a large paragraph, but even then I break lines with <br />
     
    bobby9101, Sep 29, 2006 IP
  5. Kaudo

    Kaudo Well-Known Member

    Messages:
    358
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    118
    #5
    Bobby, human submitted directory is quite easier to maintain than the human edited directory, isn´t it?
     
    Kaudo, Sep 29, 2006 IP
  6. bobby9101

    bobby9101 Peon

    Messages:
    3,292
    Likes Received:
    134
    Best Answers:
    0
    Trophy Points:
    0
    #6
    ??? what ???
    i am lost
     
    bobby9101, Sep 29, 2006 IP
  7. bobby9101

    bobby9101 Peon

    Messages:
    3,292
    Likes Received:
    134
    Best Answers:
    0
    Trophy Points:
    0
    #7
    ooh the link in my sig... that isn't my site, the web ranking link is
     
    bobby9101, Sep 29, 2006 IP
  8. ivenms

    ivenms Peon

    Messages:
    334
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Many using only <p> on pages without </p>. It works as same as paired tag, but it shows an error on the page syntax, which will reduce the page rank on search engines. So keep this in consider.
     
    ivenms, Sep 29, 2006 IP
  9. axemedia

    axemedia Guest

    Messages:
    1,070
    Likes Received:
    79
    Best Answers:
    0
    Trophy Points:
    0
    #9
    Thanks for confirming what i thought to be the case. It does not matter from an seo perspective. But from now on i'll use the <p> tags so i can tweak the spacing with css.
     
    axemedia, Sep 30, 2006 IP
  10. bobby9101

    bobby9101 Peon

    Messages:
    3,292
    Likes Received:
    134
    Best Answers:
    0
    Trophy Points:
    0
    #10
    make sure you end your </p> tags, also don't do something like this:

    <p>fwafwf</p><p>fdawaf</p><p>afwafw</p>

    <p> is not made for every line break and stuff
     
    bobby9101, Sep 30, 2006 IP
  11. axemedia

    axemedia Guest

    Messages:
    1,070
    Likes Received:
    79
    Best Answers:
    0
    Trophy Points:
    0
    #11
    Yes, i close all my <p> tags with a </p> and still use the odd <br> when i just want a break line and not a paragraph
     
    axemedia, Sep 30, 2006 IP
  12. bobby9101

    bobby9101 Peon

    Messages:
    3,292
    Likes Received:
    134
    Best Answers:
    0
    Trophy Points:
    0
    #12
    <br />
    use xhtml standards
     
    bobby9101, Sep 30, 2006 IP
  13. cj1223

    cj1223 Well-Known Member

    Messages:
    287
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    108
    #13
    i dont know about msn frontpage but i would use <p> normaly and save the <br> for when you really need it.
     
    cj1223, Sep 30, 2006 IP
  14. cj1223

    cj1223 Well-Known Member

    Messages:
    287
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    108
    #14
    im not sure what you mean, i thought <br/> was the only way
     
    cj1223, Sep 30, 2006 IP
  15. phree_radical

    phree_radical Peon

    Messages:
    563
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    0
    #15
    <p> can be styled
     
    phree_radical, Sep 30, 2006 IP
  16. mariush

    mariush Peon

    Messages:
    562
    Likes Received:
    44
    Best Answers:
    0
    Trophy Points:
    0
    #16
    Depending on the DOCTYPE definition, use <br> for HTML sites and <br /> for XML/XHTML sites. Both version are good and browsers will recognize them.

    On Topic: I would use <p> and </p>. You could also play with "text-indent" in CSS.
     
    mariush, Sep 30, 2006 IP
  17. mike323

    mike323 Well-Known Member

    Messages:
    1,594
    Likes Received:
    27
    Best Answers:
    0
    Trophy Points:
    160
    #17
    Really? Thats interesting info. Do you know if validation errors reduce page rank in search engines?
     
    mike323, Sep 30, 2006 IP
  18. adacprogramming

    adacprogramming Well-Known Member

    Messages:
    1,615
    Likes Received:
    62
    Best Answers:
    0
    Trophy Points:
    125
    #18
    It wouldn't reduce PAge Rank, That is decided by the links to the page.

    It likely would affect where you are placed in the serps. Errors of that nature could possible confuse the spider about what the text on the page is.

    Always best to be sure you have no serious error on a page.
     
    adacprogramming, Oct 1, 2006 IP