UPDATE
With the new WYSIWYG editor, you aren't required to put in your own HTML. But feel free to read this for your own edification.
What Are Tags?
- A tag is a formatting statement surrounded by arrow brackets ("<" and ">").
Here's an example:
| HTML "code" |
<em>Tags</em> can be placed <strong>in the sentences</strong> you include in your posts. |
| Resulting Formatting |
| Tags can be placed in the sentences you include in your posts. |
Always remember to close your tags! You do this by ending with the same tag, with a "/" preceding the closing word: Opening tag → <strong> Bold Text </strong> ← Closing tag. There you go. Have at it.
Sample HTML Tags
| HTML Tag | Resulting Format |
|
< h1 > |
Heading 1 |
|
< h2 > |
Heading 2 |
|
< h3 > |
Heading 3 |
| < em > | emphasis (italics) |
| < strong > | strong (bold) |
|
Un-ordered Lists < ul > |
|
|
Ordered Lists < ol > |
|
|
Ordered List Types < ol type=I > |
< ol type=A > |
|
Pre-formatted Text < pre > |
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean vitae erat. Curabitur dui. Maecenas lacinia posuere mi. Maecenas mollis felis ut turpis. |
|
Indented Text < blockquote > |
Regular text, then indent with the <blockquote> tag:Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean vitae erat. Curabitur dui. Maecenas lacinia posuere mi. Maecenas mollis felis ut turpis. |