HTML Editing Tips  

To make your text bold, simply surround the text with opening and closing bold tags, <b>like this</b>. On some pages, the title is bolded for you automatically when you select a number from the "boldness" drop-down list.

For italic text, surround the desired text with opening and closing italic tags, <i>like this</i>.

For a line break, you need to use <br>. To group a bunch of text into paragraphs, surround each paragraph with <p> and </p> tags. (The text on this popup was grouped using <p> and </p>.)

If you want to make a link to another website, say, www.foobar.com, then you would do this:
<a href="http://www.foobar.com">Text to click on</a>
This would give you the link "Text to click on". Make sure to include the "http://" before the site name, or the link won't work.

If you want to make a bulleted list, then you need to surround each bulleted item with opening and closing <li> tags, and then surround the entire list with opening and closing <ul> tags, like this:
<ul>
<li>First item.</li>
<li>Second item.</li>
<li>Third item</li>
</ul>

If you want a numbered list, it is similar to the bulleted list. Do this:
<ol>
<li>First item.</li>
<li>Second item.</li>
<li>Third item</li>
</ol>

Important! Notice that the closing tags all have a slash (/) character in them. Do not forget to close your tags properly! Otherwise, you may end up with an entire page of bold text, or italic text, or whatever.