I take it you want to create a list that is numbered. A basic list using bullets (small black circles) starts with the tag <ul> and each item listed with the tags <li>item one </li> <li>item two </li> </ul> (end list) will result in: * Item one * item two For a numbered list instead of a bullet list use <ol> (ordered list) instead of <ul> (unordered list) to start. for example <ol>
<li>item one</li>
<li>item two</li>
</ol> This will result in: # item one # item two Inside a list item <li>you can put paragraphs, line breaks, images, links, and also other lists.</li>
Copyright © 2026 eLLeNow.com All Rights Reserved.