What is wrong with this unordered list code?
<ul> <li>Item 1</li> <li Item 2</li> </ul>
No issue
Missing opening > for the <li> of "Item 2"
>
<li>
"Item 1" should not have a closing </li>
</li>
Missing > after </ul>
</ul>