To create a bulleted list you need to add a <ul> and a </ul> tag at the beginning and the end of the list. Numbered lists have <ol> tags instead of <ul> tags. To separate single list items, use <li> and </li> tags. Look at these examples to see the detailed syntax: Unordered List Explanation / Example <ul> <li>text</li> <li>text</li> <li>text</li> </ul> Makes a bulleted list using the default bullet type: · text · text · text <ul type="disc"> Starts a bulleted list using discs as bullets: · This is one line · This is another line · ...