1ul {
2 list-style-type: none;
3}
4/* if you want to remove indentation , set padding: 0 and margin: 0 */
5
6/* if you want inline code*/
7<ul style="list-style: none;">
8 <li>...</li>
9</ul>
1<ul style="list-style-type:none;">
2 <li>Coffee</li>
3 <li>Tea</li>
4 <li>Milk</li>
5</ul>