|
For reasons related to security and aesthetics, Event Adz allows only a few HTML tags.
You can use these tags to decorate your event description. Here is a 5 minute crash-course on these tags:
Italics
Enclose the text you want to print in italics between <i></i>. For example, the text:
Vancouver has an <i>amazing</i> scenery
is displayed as:
Vancouver has an amazing scenery
Boldface
Enclose the text you want to print in boldface between <b></b>. For example, the text:
Vancouver has an <b>amazing</b> scenery
is displayed as:
Vancouver has an amazing scenery
Underline
Enclose the text you want to print in boldface between <u></u>. For example, the text:
Vancouver has an <u>amazing</u> scenery
is displayed as:
Vancouver has an amazing scenery
Lists
A <ul></ul> tag represents an "Unordered List". The items in the list must be enclosed in <li></li> tags. For example, the text:
<ul> <li>New York</li> <li>London</li> </ul>
is displayed as:
However, if you wish to have numbers in place of bullets then use <ol></ol>. For example, the text:
<ol> <li>New York</li> <li>London</li> </ol>
is displayed as:
Line Breaks and Paragraph Breaks
Use <br> to specify a new line-break, and <p> to specify a new paragraph-break. For example, the text:
Hello <br> Romeo <p> Hello <br> Juliet
is displayed as:
|