Suppose I have a ordered List like How do I implement These Kinda Nested Lists in HTML Regards, Hemanth
<ol> <li>hemanth</li> <li>Bob <ol> <li>balaji</li> <li>Shawn</li> </ol> </li> <li>Michael</li> </ol> you mean like this?
No your soln shows as 1. hemanth 2. Bob 1. balaji 2. Shawn 3. Michael What I want is Both "Balaji" and "Shawn" Should have 2.1 and 2.2 respectively. 1. hemanth 2. Bob 2.1. balaji 2.2. Shawn 3. Michael
<ol type="1"> <li> Item 1 <li> Item 2 <ul> <li> Item 1 <li> Item 2 </ul> <li> Item 3 <li> Item 4 </ol> maybe a little cheesy