1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

<strong> tag?

Discussion in 'HTML & Website Design' started by comedy1, Feb 21, 2012.

  1. #1
    Hello,

    Can I use <strong> tag for all sentences in one page?




    Thanks for your answers.
     
    comedy1, Feb 21, 2012 IP
  2. Komal Reboot

    Komal Reboot Peon

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    hello;
    you can use <strong> tag for every sentence . but as per I think it will not look nice to your web page.
     
    Komal Reboot, Feb 22, 2012 IP
  3. blacknet

    blacknet Active Member

    Messages:
    709
    Likes Received:
    16
    Best Answers:
    2
    Trophy Points:
    70
    #3
    Yes, but it's a pointless effort - strong indicates that the specific bit of text is important, in relation to the other text around it. To make everything strong null-and-void's the semantic meaning of it. If you'd simply like to make the text bold, use <b>, or better yet, use the font-weight css property to control display.
     
    blacknet, Feb 22, 2012 IP
  4. comedy1

    comedy1 Active Member

    Messages:
    150
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    71
    #4
    I see. I used strong tag for my pages because it looks nice. That was the reason. But does it affect seo? Using <strong> tag?
     
    comedy1, Feb 22, 2012 IP
  5. blacknet

    blacknet Active Member

    Messages:
    709
    Likes Received:
    16
    Best Answers:
    2
    Trophy Points:
    70
    #5
    Not noticeably, however all the search engines are putting ever more focus on semantic meaning and data structure, so if/when they do take note of it, it will count negatively. I'd strongly recommend using a little snippet of css to turn all the text bold instead.

    example:

    
    <style>
     .bold { font-weight: bold; }
    </style>
    <div class="bold">
     ...
    </div>
    
    HTML:
    or

    
    <p style="font-weight:bold;">...</p>
    
    HTML:
     
    blacknet, Feb 22, 2012 IP
  6. sb2011

    sb2011 Greenhorn

    Messages:
    78
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    18
    #6
    usually,<strong> tag is use for you keywords, not the sentence,<p> tag for sentence
     
    sb2011, Feb 22, 2012 IP
  7. Alan Smith

    Alan Smith Active Member

    Messages:
    1,263
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    78
    #7
    The strong tag is another way to end up with bold text. Technically, the strong tag designed to provide a basic guidance for people surfing the web using screen readers, while the bold tag should give a strong visual. So if you want to sturdily point something out in your text use strong tag, if it's just for visual look then use bold tag.
     
    Alan Smith, Feb 23, 2012 IP
  8. JohnnyMazuma

    JohnnyMazuma Peon

    Messages:
    12
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Originally, was used to provide a visual indication that a text string was important. This unfortunately was misused by far too many people. The tag was created in HTML 4.01 to provide an indication to screenreaders to strongly emphasize the text string. The advantage of the tag is it provides an aural and visual indication of important where the tag does not.HTML5 supports both and tags.The search engines consider both and tags equally important.If you want to set all of your text to bold, then you should set the CSS font-weight style in your CSS file to font-weight: bold for your body element. This will cause all of your font weights to be bold. This eliminates the need to set the font-weight for each element.I hope this helps.Johnny Mazuma
     
    JohnnyMazuma, Feb 23, 2012 IP
  9. comedy1

    comedy1 Active Member

    Messages:
    150
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    71
    #9
    I see, thanks for answers. And what do you think about <big> tag? Is it possible to use this in long sentences or does it affect negative if we use it so long?
     
    comedy1, Feb 24, 2012 IP
  10. blacknet

    blacknet Active Member

    Messages:
    709
    Likes Received:
    16
    Best Answers:
    2
    Trophy Points:
    70
    #10
    the big tag was deprecated ages ago, can't remember the last time I saw anybody use it, and it isn't supported in html5 - thus I'd suggest avoiding it..
     
    blacknet, Feb 24, 2012 IP
  11. eydesign

    eydesign Peon

    Messages:
    28
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #11
    technically, you can ,but what's the point? if you want to highlight the whole paragraph, why not just style the p tag? or maybe you want to get benefit from using strong tag towards seo, but that doesn't work, goolge is not that stupid.
     
    eydesign, Mar 12, 2012 IP
  12. 137th Gebirg

    137th Gebirg Active Member

    Messages:
    70
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    91
    #12
    Wasn't strong supposed to be identical to bold, with the exception of extra support handling for Search Engine Optimization (a.k.a. SEO), working in concert with <META> and <Hx> tags? I've never found a real difference between <STRONG> and <B>, other than having to type more letters, to be honest. :)
     
    137th Gebirg, Mar 13, 2012 IP
  13. walidsu

    walidsu Member

    Messages:
    82
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    28
    #13
    Yes you can use <strong>Text goes here</strong> or <b>Text goes here</b>
     
    walidsu, Mar 14, 2012 IP
  14. amanthind

    amanthind Peon

    Messages:
    27
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #14
    <strong> tag use for bold for text then you use <b> tag it's a same work
    use only for specify words.
     
    amanthind, Mar 15, 2012 IP
  15. Ashaya

    Ashaya Active Member

    Messages:
    124
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    83
    #15
    yeah, you can use it for the whole page! but do you really think that the whole page in bold will look good? I personally don't think so! :(
     
    Ashaya, Mar 18, 2012 IP
  16. web.seowrkshop

    web.seowrkshop Peon

    Messages:
    30
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #16
    you can use the strong tag on one page for all the sentences.
    you can use strong tag after <p> tag then you don't need to write the strong tag again and again for each line .
     
    web.seowrkshop, Apr 27, 2012 IP
  17. MobileInternet

    MobileInternet Active Member

    Messages:
    365
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    58
    #17
    I would only use the <strong> tag for headers... or words you want to stand out.... not for everything
     
    MobileInternet, Apr 27, 2012 IP