|
Posted by Harlan Messinger on February 3, 2006, 1:51 pm
Please log in for more thread options
goldtech@worldpost.com wrote:
> Newbie esp about html validation - seems like something to strive for.
> Yet many pages even "enterprise" corporate type pages do not validate,
> yet seem to display well on most browsers. Two questions:
>
> 1. What is the reward, the reason to strive for a validating page?
>
> 2. Given the code snippet below which does not validate - how can
> accomplish the same "look" with code that does validate? Please without
> CSS, just html. Thanks
The only thing invalid about your code is you made up your own <LT> tag.
(The validator certainly told you this--didn't you read its report?)
Replace it with a valid HTML tag. Don't worry about losing whatever it
is that you think the <LT> tag is contributing the the look of the page,
because it's contributing nothing. Since the browser doesn't know what
it is, it doesn't provide any special look for it.
> ...
> <LT>Objective:</LT>
> <UL>
> <LI>foobar</LI>
> <LI>foobar</LI>
> <LI>foobar</LI>
> </UL>
>
> <LT>Technical Skills: </LT>
> <UL>
> <LI>foobar</LI>
> <LI>foobar</LI>
> <LI>foobar</LI>
> <LI>foobar</LI>
> <LI>foobar</LI>
> <LI>foobar</LI>
> ...
> <LI>foobar</LI>
> <LI>foobar</LI>
> <LI>foobar</LI>
> <LI>foobar</LI>
> </ul>
> ...
>
|