h1 tag ?

Discussion in 'Search Engine Optimization' started by d16man, Mar 22, 2007.

  1. larssonk22

    larssonk22 Well-Known Member

    Messages:
    236
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    103
    #21
    I think maybe he removed the link so you wouldnt know his site :confused:

    But I wasnt aware you could use H1 tag on alt image text. Maybe you can, but if you look at google cache it doesnt highlight keywords in the alt image, which leads me to believe they doent see it. (maybe someone can shed some light on that).

    You dont need to change anything with css, I never have.
     
    larssonk22, Mar 23, 2007 IP
  2. d16man

    d16man Well-Known Member

    Messages:
    6,900
    Likes Received:
    160
    Best Answers:
    0
    Trophy Points:
    180
    #22
    So where would my H1 or H2 tags go if I have the following code:

    <html>
    <head>
    <title>title here</title>
    <META content="text/html; charset=windows-1252" http-equiv=Content-Type>
    <meta name="keywords" content="keywords here">
    <meta name="description" content="content description">
    <meta name="robots" content="index,follow">
    <META NAME="revisit-after" CONTENT="2 days">
    </head>

    Thanks.
     
    d16man, Mar 23, 2007 IP
  3. larssonk22

    larssonk22 Well-Known Member

    Messages:
    236
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    103
    #23
    <body>
    In your main body. For example the name of an article would be H1, any sub heading or description could be used as H2. Then the article would follow.
    </body>
     
    larssonk22, Mar 23, 2007 IP
    d16man likes this.
  4. d16man

    d16man Well-Known Member

    Messages:
    6,900
    Likes Received:
    160
    Best Answers:
    0
    Trophy Points:
    180
    #24

    cool thanks....as far as CSS, I prefer the HTML stuff for some of my sites, although I do use CSS for others...

    so it would be <H1 = "name of article or description or keyword"> ?
     
    d16man, Mar 23, 2007 IP
  5. grg

    grg Guest

    Messages:
    2,692
    Likes Received:
    73
    Best Answers:
    0
    Trophy Points:
    0
    #25
    <H1> name of article or description </H1>
     
    grg, Mar 23, 2007 IP
    d16man likes this.
  6. d16man

    d16man Well-Known Member

    Messages:
    6,900
    Likes Received:
    160
    Best Answers:
    0
    Trophy Points:
    180
    #26

    thanks grg!
     
    d16man, Mar 23, 2007 IP
  7. vegabond

    vegabond Shabu Anower

    Messages:
    1,656
    Likes Received:
    289
    Best Answers:
    0
    Trophy Points:
    240
    #27
    I won't add any blank links, that can be site URL.
     
    vegabond, Mar 24, 2007 IP
  8. fatinfo guy

    fatinfo guy Peon

    Messages:
    586
    Likes Received:
    34
    Best Answers:
    0
    Trophy Points:
    0
    #28
    vegabond,

    Use this if your H1 must contain an image logo for text, this way you will have a keyword rich H1 tag with the logo. The SPAN tag will hide the text while the H1 will display the image background.

    <style type="text/css">
    
    #pageHeader h1
     {background:url("your-logo.gif") no-repeat;
       height:71px;
       width:268px;
      }
    
    #pageHeader h1 span
      {display:none
      }
    
    </style>
    
    <div id="pageheader">
      <h1><span>KEYWORD TEXT</span></h1>
    <div>
    Code (markup):
     
    fatinfo guy, Mar 24, 2007 IP
  9. julie_a

    julie_a Peon

    Messages:
    37
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #29
    I agree, thanks!
     
    julie_a, Mar 25, 2007 IP