I need to create an unordered list with URLs included and indented, while keeping all lines justified to the left.
* line one text text ted
more text text
text
* line two text ted
more text text
text
* line three text ted
more text text
text
My goal is for the bullet points to be indented without affecting the overall alignment of the text.
I've tried the following code but it's not displaying correctly due to font size issues:
<ul id="subvmtext">
<li><a href ="breakfast">breakfast</a></li>
<li><a href ="lunch">lunch</a></li>
<li><a href ="dinner">dinner</a></li></ul>
There are other CSS styles in my file causing font sizing problems, so an inline solution would be ideal.
**The proposed solution below is almost correct:
<ul style='list-style-position: outside'>
<li>Outside list</li>
<li>Item</li>
<li>Item</li>
<li>Item with a <br />line break</li>
</ul>
However, there still seems to be a bullet point visible on the second line of my text.