How can I remove the skipped line that always occurs above an html list? For example, in the code below, I have a line of text that describes the list, followed by the list itself. There is an unsightly blank line after the description and before the first item on the list. How can I change the code below so that the first list item is immediately below the description?
Description of list:
- First item.
- Second item.
- Third item.
Here is the code that needs to be changed:
<i>Description of list:</i>
<ul>
<li>First item.</li>
<li>Second item.</li>
<li>Third item.</li>
</ul>