coding a valid xhtml website |
coding a valid xhtml website |
Mar 26 2009, 08:15 PM
Post
#1
|
|
![]() talent on another level ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 746 Joined: Oct 2006 Member No: 475,735 |
I am trying to put a RSS feed on my website, and I can't because my site isn't a valid xhtml site. Any tips on how to code one correctly?
http://www.j3mag.uniqsole.com |
|
|
|
![]() |
Mar 26 2009, 08:31 PM
Post
#2
|
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 1,237 Joined: May 2008 Member No: 648,123 |
keep an eye on validator.w3.org to show your errors. the biggest problem you're having is closing tags. with XHTML, some tags need to be closed within themselves, like <link>, <br> and <input>
they should look like this: CODE <link href="URL" rel="" /> <br /> <input type="text" /> fixes those will clear up many errors. |
|
|
|
bigtrey90 coding a valid xhtml website Mar 26 2009, 08:15 PM
Fawaz I recommend you using the W3C Validator to check t... Mar 26 2009, 08:32 PM
bigtrey90 thanks will do Mar 26 2009, 09:12 PM
bigtrey90 Okay I am having a hard time fixing the errors. H... Mar 28 2009, 03:27 PM
Mike When you use <img> tags, make sure you add t... Mar 28 2009, 03:40 PM
mipadi Sounds like you really just want to mark it up as ... Mar 28 2009, 04:14 PM![]() ![]() |