Basic Editing - Some Key Embedded Formatting Controls

To bold and make green (i.e., REEL GREEN): <span class="companyName" >REEL GREEN </span>

To make a word or phrase bold (i.e., Bold Statement or Bolder Statement): <strong>Bold Statement</strong> or <b>Bolder Statement</b>

To italicize a word or phrase (i.e., Book Title): <i>Book Title</i>

To create a numbered list, this code <ol> <li>First item</li> <li>Second item</li> </ol> produces :

  1. First item
  2. Second item

To create an item list, this code <ul> <li>First item</li> <li>Second item</li> </ul> produces:

  • First item
  • Second item

To add a blank line or terminate the current line, this code <br> will do it.


More information about formatting options: PRESS ME. If you forget about this page, you can also access this information on any edit page by expanding the "Input Format" entry.

WARNING: To get all of the above edit controls to work, the "Full HTML" option should be set.

Back to top