<font size="?"></font>
Sets size of font, from 1(smallest) to 7(largest) ) |
font size HTML
code: Set font size <font size="5">to 5</font>. |
font size actual
display:
Set font size to 5. |
<small></small>
Creates one size smaller text |
<big></big>
Creates one size larger text |
<font color="?"></font>
Sets font color, using name or
hex value |
font color HTML
code:
This is
<font color="red">red text.</font> |
font color actual display:
This
is red text. |
|
|
Text
Formatting |
<p>
Creates a new paragraph |
paragraph HTML code:
First line<p>Second line |
paragraph actual display:
First line
Second line |
|
<p align="center">
Aligns a paragraph to the left, right, or center |
<br>
Inserts a line break |
paragraph HTML code:
First line<br>Second line |
paragraph actual display:
First line
Second line |
<ul></ul>
Creates a bulleted list
<ol></ol>
Creates a numbered list
<li></li>
Encloses each list item, and adds a bullet or a number |
bulleted list HTML code:
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
</ul> |
bulleted list actual display:
|
|
|
Images
|
<img src="http://yourwebsite.com/yourimagefolder/yourimage.jpg">
Adds an image |
<hr>
Inserts a horizontal rule |
|
|
Tables
|
<table></table>
Creates a table |
<tr></tr>
Sets off each row in a table |
<td></td>
Sets off each cell in a row (note: in each table, each row must have
the same number of cells) |