0

Hello I am trying to do a nested list in html and I can't figure out why my in3 is not showing up under my out3 (like inner 1 and 2). I feel like this is one of those problems where I have to move a couple of letters around but ive been trying to fix this for an hour and cant seem to figure it out.

Heres the code that I have:

<ul> 
 <li>Out1
 <li>Out2</li> 
  <ul>
   <li>In1
   <li>In2</li>
    <ul>
     <li>De1</li>
     <li>De2</li>
    </ul> 
   </li>          
  </ul> 
 </li>
<li>Out3</li>
<u1>
 <li>In3</li>
</u1>
</u1> 
lucyb
  • 333
  • 5
  • 15
  • one of those "couple of hours after the work day has ended" kinda problems. :) – Toby Jul 21 '16 at 00:17