HTML tips:
If you want things like links, lists, buttons, lines/dividers etc... if there are no boxes or buttons for them you may need to write them in .HTML if your posting host reads it.
Here go a few tips. Replace {} with <>
Some frequently used simple things to do: Bold, Italics, Underline
This:
Bold: Unbolded <b>Bolded</b>
Italics: No Italics <i>Italics</i>
Underline: No underline <u>Underline</u>
-----
Should look like this:
Bold: Unbolded
Bolded
Italics: No Italics
Italics
Underline: No Underline
Underline
Lists: bullets/numbered
UnOrdered List (bulleted):
Start and end with:
<ul></ul>
Each line in the list starts with: <li>
Example:
<ul>Here is a list
<li>first line
<li>second line
<li>third line
</ul>
Ordered (or numbered) List:
Start and end with:
<ol></ol>
Same as above, each line in the list starts with: <li>
Example:
<ol>Title:
<li>first line
<li>second line
<li>third line
</ol>
----
UnOrdered List, Should look like:
- Here is an unordered list
- first line
- second line
- third line
Ordered List should look like:
- Here is a ordered list
- first line
- second line
- third line
Hyper Links:
Start and end with:
<a></a>
Add more details:
<a href="The website you want the reader to be directed to">The text that you want the reader to see</a>
If you just want to make the URL clickable just put the URL in both spots above.
Like this: <a href="http://mightypeople.info">http://mightypeople.info</a>
-----
If you are directing them to mighypeople.com It should look like this:
Come visit us at Mighty People
or
http://mightypeople.info
To Indent:
Below is how you indent:
<div style="margin-left: 40px;">This is indented.</div>
-----
It should look like this:
Below is how you indent:
This is indented.