Welcome to Doors2Stores



"Bringing understanding and awareness of eBay Stores"

eBay Store owners dedicated to sharing knowledge
and resources for a better shopping community

   

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

  • first item
  • second item
  • third item
  • fourth item

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

  1. first item
  2. second item
  3. third item
  4. fourth item
 
Return