1. This website uses cookies. By continuing to use this website you are giving consent to cookies being used.
    For information on cookies and how you can disable them visit our Cookie Usage page.
    Dismiss Notice

HTML validation issue

Discussion in 'Web Development' started by navyfalcon, Feb 16, 2012.

  1. navyfalcon

    navyfalcon Well-Known Member Verified Member

    web page
    http://freetutorials.name/Reference1/StDevFrm.html
    -
    line 262
    anchor "list" already defined
    line 435
    anchor "screenshots" already defined
    -
    these are warnings but will not automatically correct in HTML Tidy
    any suggestions on how to correct, they are anchors for the menu ??
    -
    Thank You
    falcon
     
  2. Mimoun

    Mimoun Administrator Staff Member Director Verified Member

    You have two links with the same name "list".
    An id has to be unique. So just rename it to id="list2" or something else and the error will not show up anymore.
    Same problem with the "screenshots".
     
  3. navyfalcon

    navyfalcon Well-Known Member Verified Member

    Thank You Mimoun
    Item corrected
    falcon