As a newcomer, I am attempting to format my list so that no dot or dash appears in front of the list items. Despite my efforts, the dot is still visible. How can I eliminate the dot or dash from the list items?
<ul>
<li>
<p> Item One </p>
</li>
<li>
<p> Item Two </p>
</li>
</ul>
Is there a CSS style property I can use to get rid of the dot? Currently, my list displays like this:
- Item One
- Item Two
What steps do I need to take to remove the dash, dot, or square shape?