It keeps saying I need to have at least one unordered lists inside my unordered list of profile sections- but I’ve tried every combination I can think of.
I dont know man with out seeing the entire code its hard to see your problem but i can see that there is a closing body tag above more list this is obviously a problem because all the list should be inside the body.
<ul>
<li>Favorite Quotes
<ol>
<li> The quieter you become the more you hear!</li>
<li>The greatest pleasure in life is doing what people say you cannot do!</li>
<li>Education is not the learning of facts, but the training of the mind to think.</li>
<li> Everybody is a genius. But if you judge a fish by it's ability to climb a tree it will live it's whole life beliving that it is stupid.</li>
</ol>
</li>
<! -- second list -->
<ul>
<li> least liked quotes</li>
<li> you owe me a yellow</li>
</ul>
what you need to do is create a list WITHIN a list. you’re creating two seperate lists. one unordered and one ordered. you’re code should look something like htis
you can see asthetically how the list will look different. it will actually be a list within a list instead of two seperate lists. hopefully this helps.