http://www.w3schools.com/html/tryit.asp?filename=tryhtml_nestedlists2
<!DOCTYPE html>
<html>
<body>
<h4>A nested List:</h4>
<ul>
<li>Coffee</li>
<li>Tea
<ul>
<li>Black tea</li>
<li>Green tea
<ul>
<li>China</li>
<li>Africa</li>
</ul>
</li>
</ul>
</li>
<li>Milk</li>
</ul>
</body>
</html>
You probably forgot to close some tags. Use some editor that helps you with tags in HTML. Notepad++, free Visual Studio editions, ... there are many...
UPDATE:
Indent your code and you will see more easily by yourself next time.
<!DOCTYPE html>
<html>
<head></head>
<body>
<li>
<a href="support.html"><span>DOCUMNETS</span></a>
<ul class="sub-level">
<li><a href="#">Upload Dcoument</a></li>
<li><a href="#">Approved Document</a></li>
</ul>
</li>
</body>
</html>