List HtmlOrganize Google Sites List by creating Bullet or Numbered lists of items in Google Sites through the WYSIWYG menu bar. Bullet List or Unordered List <UL> Numbered List or Ordered List
<OL>
<UL> <li>Item 01</li> <li>Item 02</li> </UL> | Numbered List:
<OL> <li>Item 01</li> <li>Item 02</li> </OL> HTML List code<ul><li><span style="direction: ltr; ">Item 01 </span></li><li><span style="direction: ltr; ">Item 02</span></li></ul>
Google Sites Creates an Additional span tag and style attribute for each item in the List tag. The Inline CSS style attribute can also be used, by adding the <object> tag around the list. <object><ul style="list-style-image: url(http://www.example.com/tick.gif); list-style-position: outside; "><li>Item 01</li><li>Item 02</li></ul></object> |
Google Sites HTML > WYSIWYG HTML Editors >