I don't understand HTML, help!!!
Using HTML can be daunting but it doesn't have to get too complicated. You can use some basic HTML elements quite easily.
All HTML is written with an opening and closing tag, e.g.
<p>Here is where some text goes.</p>
<p> is the opening tag
</p> is the closing tag
If you miss an opening tag, or don't enter a closing tag, then it will cause display problems.
Common tags:
<p> | Denotes a new paragraph of text |
<h1> to <h6> | Denotes headings |
<b> | Makes text bold |
<strong> | Makes text bold |
<em> | Puts text in italics |
<a href="[url]"> | Creates a hyperlink |