How can I reset <ul> and <li>
tags to defaults inside html file without touching css?
For example, this gives me all items horizontally lined up same without any indenting. I am assuming they are getting their attributes from the css file, removal of css link in html makes them properly. So how to reset them?
<ul type="disc">
<li>Electronics
<ul type="square">
<li>DVD Players</li>
<li>Computers
<ul type="circle">
<li>Desktops</li>
</ul>
</li>
<li>Portable MP3 players</li>
<li>T.V.s</li>
</ul>
</li>
<li>Furniture
<ul type="square">
<li>Beds</li>
<li>Tables</li>
<li>Chairs</li>
</ul>
</li>
</ul>
Thanks!