Anchor text vs Alternative text

Discussion in 'Search Engine Optimization' started by dylanphelan, Feb 12, 2008.

  1. #1
    I was just wondering about this the other day:

    Say now you have the option of using a keyword phrase (say with 3 words) as anchor text OR you have the option of using an image with a long tail keyword phrase as it's alternative text.


    Does the image hyperlink with the alt text (serving as anchor text) carry the same weight in terms of the anchor text relevancy (to the landing page) as does the standard anchor text?
     
    dylanphelan, Feb 12, 2008 IP
  2. dcristo

    dcristo Illustrious Member

    Messages:
    19,797
    Likes Received:
    1,201
    Best Answers:
    7
    Trophy Points:
    470
    Articles:
    5
    #2
    No it doesn't. Normal anchor text links carry more weight then img alt tags.
     
    dcristo, Feb 12, 2008 IP
  3. dylanphelan

    dylanphelan Active Member

    Messages:
    86
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    91
    #3
    Ok. I thought that might be the case.
     
    dylanphelan, Feb 12, 2008 IP
  4. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    437
    Best Answers:
    0
    Trophy Points:
    0
    #4
    As dcristo said, you're going to want to go for the anchor text. You can have the best of both worlds though by using an image substitution technique though. It involves using the anchor element, an empty SPAN, your link text and a dash of CSS.

    It looks like this:

    
    [b]HTML CODE[/b]
    <a href="#" id="unique-id">Keyword rich anchor text<span></span></a>
    
    {b]CSS CODE{/b]
    #unique-id, #unique-id span {
    	display: block;
    	height: 100px;
    	width: 200px;
    }
    
    #unique-id {
    	position: relative;
    }
    	#unique-id span {
    		background: url("/images/image.png") top left no-repeat;
    		position: absolute;
    		top: 0;
    		left: 0;
    	}
    
    Code (markup):
    (This is from memory, as I don't use image substitution very much, but it should work.)
     
    Dan Schulz, Feb 12, 2008 IP
  5. iceshards

    iceshards Guest

    Messages:
    72
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Great explanation. You've got there. Thanks. :D
     
    iceshards, Feb 12, 2008 IP
  6. dylanphelan

    dylanphelan Active Member

    Messages:
    86
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    91
    #6
    Thanks Dan,

    I'll save that for future reference.
     
    dylanphelan, Feb 13, 2008 IP
  7. bomberman

    bomberman Peon

    Messages:
    1,082
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #7
    dcristo is right. It is best to use anchor text than alt attribute.
     
    bomberman, Feb 13, 2008 IP
  8. imnajam

    imnajam Well-Known Member

    Messages:
    2,389
    Likes Received:
    113
    Best Answers:
    0
    Trophy Points:
    185
    #8
    Another vote for the preference of anchor text over img ALT.
     
    imnajam, Feb 13, 2008 IP
  9. 2 FN LOW

    2 FN LOW Peon

    Messages:
    180
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #9
    i use both
     
    2 FN LOW, Feb 13, 2008 IP
  10. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    437
    Best Answers:
    0
    Trophy Points:
    0
    #10
    I'll use either or, depending on whether it's the semantic (read: correct) use of the elements in question.
     
    Dan Schulz, Feb 13, 2008 IP