|
Paragraph
<P>...</P>
Use this to define a paragraph.
Example:<p>This
is one paragraph</p><p>This
is another paragraph</p>
Click here
to see what it looks like.
|
|
Strikethrough
<S>...</S>
Use this to strike through text.
Example:
This is how <s>strikethrough</s>
works.
Click here
to see what it looks like.
|
|
Small Text
<Small>...</Small>
Use this to make text smaller.
Example:
This is <small>small</small>
text.
Click here
to see what it looks like.
|
|
Style
<Style>...</Style>
Use this to control how text is displayed.
Example:
<html><head><title>Style</title><style
type="text/css">{color:red;}
</style></head><body>This
is red.</body><html>
Click here
to see what it looks like.
|
|
Subscript
<Sub>...</Sub>
Text is rendered in subscript.
Example:
This is <sub>subscript</sub>
text.
Click here
to see what it looks like.
|
|
Superscript
<Sup>...</Sup>
Text is rendered in superscript.
Example:
This is <sup>subscript</sup>
text.
Click here
to see what it looks like.
|
|
Table
<Table>...</Table>
This tag creates a table.
Example:
<table
border="1"
width="40%"><caption>This
is the Caption</caption><colgroup><col
align="center"><col
align="center"><tbody><tr><td
width="25%">HTML</td><td
width="25%">4.0</td></tr></tbody></table>
Click here
to see what it looks like.
|
|
Table Body
<Tbody>...</Tbody>
This tag defines the table body.
Example:
<table
border="1"
width="40%"><caption>This
is the Caption</caption><colgroup><col
align="center"><col
align="center"><tbody><tr><td
width="25%">HTML</td><td
width="25%">4.0</td></tr></tbody></table>
Click here
to see what it looks like.
|
|
Table Cell
<Td>...</Td>
This tag creates a cell in a
table.
Example:
<table
border="1"
width="40%"><caption>This
is the Caption</caption><colgroup><col
align="center"><col
align="center"><tbody><tr><td
width="25%">HTML</td><td
width="25%">4.0</td></tr></tbody></table>
Click here
to see what it looks like.
|
|
Table Row
<Tr>...</Tr>
This tag creates a cell in a
table.
Example:
<table
border="1"
width="40%"><caption>This
is the Caption</caption><colgroup><col
align="center"><col
align="center"><tbody><tr><td
width="25%">HTML</td><td
width="25%">4.0</td></tr></tbody></table>
Click here
to see what it looks like.
|
|
Title
<Title>...</Title>
This tag encloses the title of
a document (it always appear in the title bar of a browser.
Example:
<html><head><title>HTML</title></head></html>
Click here
to see what it looks like.
|
|
Underlined
Text
<U>...</U>
Use this to underline text.
Example:
This is <u>underlined</u>
text
Click here
to see what it looks like.
That's it for HTML tags.
Note that there are more tags in HTML than what we've covered
in these lessons. Lesson 5 will show you an example of how
you can use everything you've learned so far.
|