What this tag does |
What it looks like |
What the code is |
This makes the text in the size "Heading 1", the largest heading. |
Heading 1 |
<h1>your text here</h1> |
The next largest heading. I'm not going to show it, but you can use the numbers from 1-6, and the smaller the number the larger the text. I'll show you a better way to change text sizes in the next section, so stick with this one for a while. |
Heading 2 |
<h2>your text here</h2> |
Makes text italic |
Now don't I look sexy?
|
<i>your text here</i>
|
Makes text bold |
This stands out!
|
<b>your text here</b> |
Underlines text |
This is important!! |
<u>your text here<u> |
This starts a new paragraph. You do not need to include a closing tag(</p>) when using this
|
Paragraph One Paragraph Two.
|
<p> |
This starts a new line, you do not need to use a closing tag with this.
|
Line One Line Two
|
<br> |
This creates a horizantal line, you don't need a closing tag for this, either.
|
|
<hr> |
Centers text |
centered |
<center>centered text</center> |
Aligns text on the right. |
Right |
<p align="right">right text</p align> |