Lesson 6: XHTML Validation
(About XHTML Validation)

Validating XHTML Code
The best way to validate your code is to use the validator created by the same people that created the standard, www.w3.org. You will notice that every page in this course has a button at the bottom left for validating that page.

You can validate your pages as well by either adding the same button to your page(s) using the following code:

<a href="http://validator.w3.org/check/referer">
<img src="http://www.w3.org/Icons/valid-xhtml10"
     alt="Valid XHTML 1.0!" height="31" width="88" />
</a>

Or by visiting validator.w3.org then entering the URL of your page(s). In either case, your page(s) will need to be uploaded to the Internet so the validator can find then.

Right now, you may not understand everything the validator returns to you, but don't worry, you will understand more as you learn more skills.