What is wrong with the following list?
<ul> <li>Item 1</li <li>Item 2</li> </ul>
Missing opening <ul> tag
<ul>
Missing > in the closing </li> for "Item 1"
>
</li>
Should use <ol> instead of <ul>
<ol>
No issue