What is wrong with the following unordered list code?
<ul> <li>Item 1<li> <li>Item 2</li> </ul>
No issue
Missing closing </li> for "Item 1"
</li>
<ul> tag is incorrect
<ul>
"Item 2" should not have a closing </li>