Hey, is it possible to have multi-level lists in HTML? Such as:

HTML Code:
<ul>
  <li>This is...</li>
  <ul>
    <li>a test.</li>
  </ul>
</ul>
According to W3's validator, I don't think it's possible to create one like that. Is there another way?