I am very new to HTML and I need some help on removing visual white space in my HTML code when I compile run it.
This is what I want my HTML page to look like in this specific area:

And this is how it looks on my end (I don't want this. I want it to look like the image above)

This is the code I am using for the table element:
<ul> <li> <p>Gorras</p> <ol> <li>Small - $10.00</li> <li>Medium - $12.00</li> <li>Large - $15.00</li> </ol> </li> </ul> <ul> <li> <p>Camisas</p> <ol> <li>Small - $20.00</li> <li>Medium - $22.00</li> <li>Large - $25.00</li> </ol> </li> </ul> <ul> <li> <p>Calzado</p> <ol> <li>Small - $50.00</li> <li>Medium - $60.00</li> <li>Large - $75.00</li> </ol> </li> </ul> <ul> <li> <p>Gafas</p> <ol> <li>Small - $10.00</li> <li>Medium - $12.00</li> <li>Large - $15.00</li> </ol> </li> </ul> Is there any way I can remove these spaces between each list?
Thank you very much and please forgive me because I am new to HTML.

ul, li, p {margin:0px;}jsfiddle.net/4fzL07qf/1