How can you create multi-level nested lists?
By placing a <ul> or <ol> inside an <li>
<ul>
<ol>
<li>
By setting the level attribute on the <li>
level
By using JavaScript to manipulate the DOM
By setting the nested attribute on the <ul> or <ol>
nested