![]() |
eBay Store owners dedicated to sharing knowledge |
Creating Lists |
| Many times it is easier for your potential Buyers to review your Terms of Sale (TOS) in point form using bullets or numbers rather than lengthy text. The two examples below are the most popular, but if you would like other types, refer to Unordered Lists or Ordered Lists. |
| Unordered Lists An unordered list is a list of items. The list items are marked with bullets (typically small black circles). An unordered list starts with the <ul> tag. Each list item starts with the <li> tag. HTML code <ul> <li>first item</li> <li>second item</li> <li>third item</li> <li>fourth item</li> </ul> Will give you this
|
| Ordered Lists An ordered list is also a list of items. The list items are marked with numbers. An ordered list starts with the <ol> tag. Each list item starts with the <li> tag. HTML code <ol> <li>first item </li> <li>second item </li> <li>third item </li> <li>fourth item </li> </ol> Will give you this
|
| Return |