Unordered list without bullets in HTML and CSS
<ul style="list-style-type:none"> <li>One</li> <li>Two</li> <li>Three</li> </ul>
or..
.li { list-style: none; margin-bottom: 1px; line-height: 1.8em; }
Output

<ul style="list-style-type:none"> <li>One</li> <li>Two</li> <li>Three</li> </ul>
or..
.li { list-style: none; margin-bottom: 1px; line-height: 1.8em; }