| 
 Posted by andrew on 04/03/07 02:35 
On Tue, 03 Apr 2007 02:18:06 GMT 
aljones <al@shotmail.com> wrote: 
 
> I'm back with my frustration! 
>  
> 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) 
[...] 
 
 Always keen to answer the easy question first :-) 
 
<ul> 
 
  <li>  </li> 
  <li>  </li> 
  <li>   
     <ul> 
        <li>  </li> 
        <li>  </li> 
     </ul> 
  </li> 
  <li>  </li> 
  <li>  </li> 
</ul> 
 
          Andrew 
 
 
--  
Andrew's Corner 
http://people.aapt.net.au/~adjlstrong/
 
[Back to original message] 
 |