Help me Validate my website

Discussion in 'XML & RSS' started by amitpatel_3001, Jan 17, 2007.

  1. #1
    amitpatel_3001, Jan 17, 2007 IP
  2. Tim_Myth

    Tim_Myth Peon

    Messages:
    741
    Likes Received:
    52
    Best Answers:
    0
    Trophy Points:
    0
    #2
    1. img tags must have the alt attribute set: ie <img src="myimage.jpg" alt="This could be empty quotes if you don't want to caption your image" />
    2 & 3. When using list-item tags <li>, you must specify the start and end of a list using <ul> for an unordered list or <ol> for an ordered list. How else is the browser to know what style of list marker to use?
    4. See 1
    5, 6, & 7 XHTML tas must be lowercase: <SCRIPT is incorrect, <script is correct.
    8-13. URLs must be encoded. & is valid in URLs, but in XHTML documents it signifies the start of a special character. Instead use &amp;.
    14. See 5-7
    15 & 16. All tags must be closed and properly nested: <p><i>Hi</i></p> is correct, <p><i>Hi</p><i> is not. Neither is <p><i>Hi</p>.

    Good luck with it.
     
    Tim_Myth, Jan 23, 2007 IP
  3. amitpatel_3001

    amitpatel_3001 Results Follow Patience

    Messages:
    14,074
    Likes Received:
    1,178
    Best Answers:
    0
    Trophy Points:
    430
    #3
    Thanks for the help buddy,
    let me give this code a try
    Amit
     
    amitpatel_3001, Jan 24, 2007 IP
  4. Tim_Myth

    Tim_Myth Peon

    Messages:
    741
    Likes Received:
    52
    Best Answers:
    0
    Trophy Points:
    0
    #4
    If you run into any other snags, let me know. :)
     
    Tim_Myth, Jan 24, 2007 IP