Sections

Resources

Bullets & Lists

Beginning Tag

Ending Tag Description & Example
<li>
</li>
List item

<ol>
</ol>

Ordered list/numbered list

Graphic/wysiwyg View:

  1. item one
  2. item two
  3. item three

Code View

<ol>
   <li>item one</li>
   <li>item two</li>
   <li>item three</li>
</ol>

 

<ul>
</ul>

Unordered/bulleted list
Graphic/wysiwyg View:

  • item one
  • item two
  • item three

Code View

<ul>
   <li>item one</li>
   <li>item two</li>
   <li>item three</li>
</ul>

Return to: Baylor Business Content Management System | Top of Page