EPIC Team & Contacts
Industry News & Events
Industry RSS News Feeds
Distance Learning Resources
HTML Codes Reference
Here is a simple subset of HTML codes that you can use in stories on the site:
REMEMBER: every open tag must be followed by a close tag. For example, if you have a <em> tag, you must have a </em> tag. Also - check your quotes carefully! All quote sets must match (open quotes - close quotes), always.
| <b> or <strong> | bold |
| <em> | italics |
| <a href=""> | link |
| <img src=""> | display image |
| <h3> | title size large |
| <h4> | title size medium |
| <center> | center everything between this and |
| <cite> | a quotation, offset and italicized. |
| <ul> | an unnumbered list (use <li> for each item in the list) |
| <ol> | an ordinal list (numbered) (use <li> for each item in the list) |
| <hr> | horizontal divider |
NESTING TAGS
When using tags inside of each other, they should be closed in the reverse order that you opened them.
For example, this would be correct:
<center><strong><em>A Nice Title of Mine</em></strong></center>
This would be INCORRECT:
<center><strong><em>A Nice Title of Mine</center></strong></em>

