H1 & Header Tag

Discussion in 'Search Engine Optimization' started by elle19570, Jul 20, 2006.

  1. #1
    Hi,

    Is there is any difference between

    <span class="header">keyword</span>

    AND

    <H1>keyword</H1>

    Which one is useful in the eyes of search engine spider.
     
    elle19570, Jul 20, 2006 IP
  2. virtualraceday

    virtualraceday Peon

    Messages:
    137
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    The differences are that <h1> is defined in HTML syntax as a header with the greatest significance (over h2, h3, etc.). The other in your example is not a "header" tag, it's a <span> tag with a class called "header". You could have called it anything that you wanted.

    If SE's even consider classes given to tags, then the best would have to be a <h1> with a header class, i.e. <h1 class="header"> but I doubt it would help.
     
    virtualraceday, Jul 20, 2006 IP
  3. mad4

    mad4 Peon

    Messages:
    6,986
    Likes Received:
    493
    Best Answers:
    0
    Trophy Points:
    0
    #3
    <h1> is better. You can alter it using your css file.
     
    mad4, Jul 20, 2006 IP
  4. isosh

    isosh Peon

    Messages:
    93
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Can i use this structure?
    <h1><span class="t11">Keyword</span></h1>
     
    isosh, Jul 21, 2006 IP
  5. duilen

    duilen Active Member

    Messages:
    354
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    58
    #5
    Are you talking about strictly SEO or does this deal with CSS? If this has to do with style then why not use inline style? If this is an SEO question then why not spend the extra time you would have used on code developing content?
     
    duilen, Jul 21, 2006 IP
  6. KC TAN

    KC TAN Well-Known Member

    Messages:
    4,792
    Likes Received:
    353
    Best Answers:
    0
    Trophy Points:
    155
    #6
    You can use:
    
    <h1 class="t11">Keyword</h1>
    
    Code (markup):
    In your css file:
    
    .t11{
    /* Include your t11 styling here */
    }
    
    Code (markup):
    And yes, H1 has more weigh :)
     
    KC TAN, Jul 22, 2006 IP