I would love it if someone can review my first code. Without doing a lot extra, just mixed almost everything I learnt so far. Please find the output and code below
Congratulations! Well done!
Nice idea with mixing everything together. But the colors hurt my eyes
Two small things:
You made a typo in the end tag of the ordered list (</op> instead if </ol>)
When nesting lists the inner list needs to be inside a <li> tag to be valid HTML. You donโt see a difference in the live code, because browsers are very good in correcting our happy little accidents. This would be valid HTML:
<ol>
<li>first item</li>
<li>second item <!-- closing </li> tag not here! -->
<ul>
<li>second item first subitem</li>
<li>second item second subitem</li>
<li>second item third subitem</li>
</ul>
</li> <!-- Here's the closing </li> tag -->
<li>third item</li>
</ol>
I hope that helps. Feel free to come back with more task or any questions you have