Here are a few simple codes that changes the format of your text.
Bold
To make your text bold, you use <b> at the begining of the text that you want bold, and use </b> at the end.For example, I want to make "angry" in the following text bold: I was so angry at him! I can't believe he did that!
I would use this HTML:I was so <b>angry</b> at him! I can't believe he did that!
Which would give me:I was so angry at him! I can't believe he did that!
Italic
Making text italic is similar to making text bold, except you use "i" instead of "b" in the code; <i>Italic text goes here</i>.
Underline
I think you may have guessed the code for this one, it's <u>Underlined Text</u>, which would give me Underlined Text.
More than one?
You can also combine as many of these codes as you want!Lets say I wanted to make the word "happy" bold and italic, I would use <b><i>happy</i></b>, which gives me happy. You can use bold and underline, italic and underline, or all 3 of them together! Alot of HTML codes can be combined in this way. A handy thing to remember is if you have the <b> code (or any other code) on the outside of the other code, close it off with </b> on the outside as well. For example, in <b><i>happy</i></b>, I had the <b>'s outside of the <i>'s.
Paragraphs and Breaks
To Separate text in to paragraphs, you simply would use <p>.For example: 1st Paragraph <p> 2nd Paragraph <p> 3rd Paragraph would give:1st Paragraph
You can also write it as
2nd Paragraph 3rd Paragraph 1st Paragraph <p>
Or however you want.
2nd Paragraph <p> 3rd Paragraph Now, using <br> instead of <p> would give us breaks instead of paragraphs, like this: 1st Break
2nd Break 3rd Break
|


