Ordered lists with HTML type

Solved it!
They want the type to be declared in the list item!

<ol>
  <li type="I">Coffee</li>
<ol>
  <li  type="a">Java</li>
  <li  type="a">Mocca</li>
  <li  type="a">Tea</li>
  <li  type="a">Milk</li> 
</ol>
</ol>

1 Like