Posted by mbstevens on 04/03/07 12:25
On Tue, 03 Apr 2007 02:18:06 +0000, aljones wrote:
> 1) URL looks like: http://brokenchainsministry.net/prodsupport.html
> Ran W3C validation and it's complaining that I have an embedded <ul> at
> line 24. As an example ....
> <UL>
> <li> </li>
> <li> </li>
> <ul>
> <li> </li>
> <li> </li>
> </ul>
> </ul>
> Googling for embed <ul> (and several variations give me a lot - but none
> that mean anything - to me)
>
You can't do this:
<ul>
<ul>
</ul>
</ul>
You can, however, do this:
<ul>
<li>
<ul>
</ul>
</li>
</ul>
BTW, those images of hands are......creepy.
[Back to original message]
|