ALLOWED HTML TAGS
| Tag | Example | Result |
|---|---|---|
| <a> | A link to <a href="http://www.camra.org.uk" >CAMRA</a> here | A link to CAMRA here |
| <b> | Some <b>bold</b> text | Some bold text |
| <br> | A line break <br> here | A line break here |
| <hr> | <hr> | |
| <i> | Some <i>italic</i> text | Some italic text |
| <p> | <p>A paragraph</p><p> Another paragraph</p> | A paragraph Another paragraph |
| <small> | Some <small>small</small> text | Some small text |
| <span> | See below | |
| <tt> | Some <tt>teletext</tt> text | Some teletext text |
The span tag can be used to add style to chunks of text.
A few examples are shown below. For further examples see:
http://www.w3schools.com/Css/default.asp
.
.
| Example | Result |
|---|---|
| <span style="color:red">Some text</span> | Some text |
| <span style="background:red;">Some text</span> | Some text |
| <span style="background:red;color:white;">Some text</span> | Some text |
| <span style="padding:2em;">Some text</span> | Some text |
| <span style="border medium double blue;">Some text</span> | Some text |

