BASIC HTML Formatting:
Type <p> at the beginning of every paragraph and </p> at the end of every paragraph to break your text into paragraphs.
Example: <p> This is the text of my first paragraph. </p> <p> This is the text of my second paragraph.</p>
To get italicized writing use <i> before the target word(s) and
</i> after the target word(s).
Example: This is written in <i>italic</i> letters.
will come out on the internet as: This is written in italic letters.
To get bold type use <b> before the target word(s) and </b> after the target word(s).
Example: This is written in <b>bold</b> letters.
will come out on the internet as: This is written in bold letters.
To get underline type use <u> before the target word(s) and </u> after the target word(s).
Example: This is <u>underlined.</u>
Will come out on the internet as: This is underlined.
To place a link in your text use this formatting:
<a href="the website you are linking to">the text displayed in the link</a>
Example:
To get this:
This is my website's link please
click on it.
You would type:
This is <a href="http://www.slobodan-milosevic.org">my website's link</a> please
click on it.