| Text Tags |
| What It Is |
What It Does |
<hl></hl>,<h2></h2>,<h3></h3>,
<h4></h4>,<h5></h5>,<h6></h6>
|
The heading tags display text in sizes ranging from the largest, h1, to the smallest, h6. These specifications are intended to denote the importance data below the heading.
|
|
<b></b>
|
Specifies bold text.
|
|
<i></i>
|
Specifies italics text.
|
|
<tt></tt>
|
Specifies a teletype or typewriter-like text.
|
|
<em></em>
|
Creates an emphasis on text that is rendered usually as italics, but sometimes as bold depending on the browser.
|
|
<strong></strong>
|
Creates an emphasis on text that is usually rendered as bold, but sometimes as italics depending on the browser.
|
|
<font size=?></font>
|
Specifies the font size from 1 to 7. 1 is the largest, 7 the smallest, and 3 is generally the default size.
|
|
<font color=?></font>
|
Specifies font color.
|
NOTE: Font attributes may be combined within the font tag. Example:
<font size="4" color="#33FF00">Example of combined font
attributes. </font>
|
| Image Tags
|
| What It Is
|
What It Does
|
|
<img src="name.jpg">
|
Places an image.
|
|
<img src="name.jpg" align=?>
|
Specifies the alignment of an image; left, right, center; bottom, top, middle
|
|
<img src="name.jpg" border=?>
|
Specifies a border around and image.
|
|
<img src=name.jpg alt=image discription>
|
Specifies the alternative label for an image. This is especially important for
use non graphical browsers.
|
NOTE: Attributes within the image tag may be combined. Example:
<img src="bear-picture.jpg" width="200" height="250"alt="My Picture">
|
|
Table Tags
|
|
What It Is
|
What It Does
|
|
<table></table>
|
Specifies the beginning and end of a table.
|
|
<tr></tr>
|
Specifies the beginning and end of a table row.
|
|
<td></td>
|
Specifies the beginning and end of a table cell.
|
|
<th></th>
|
Defines a table header. A normal cell with text that is bold and centered.
|
|
<table border=#>
|
Specifies the size of the border around a table and cells within the table.
|
|
<table cellspacing=#>
|
Specifies the space between cells.
|
|
<table cellpadding=#>
|
Specifies the amount of space between the border of a cell and the items within the cell |
|
<table width=”?”>
|
Specifies the width of a table in either pixel's or percent.
|
|
<tr align=?>
|
Specifies the alignment of contents in a row of cells as either left, right, or center.
|
|
<td align=?>
|
Specifies the alignment of contents in a cell as either left, right, or center.
|
|
<tr valign=?>
|
Specifies the vertical alignment of contents in a row of cells as either top, bottom, or middle.
|
|
<td valign=?>
|
Specifies the vertical alignment of contents in cell as either top, bottom, or middle.
|
|
<td colspan=#>
|
Specifies the number of columns a cell will span.
|
|
<td rowspan=#>
|
Specifies the number of rows a cell will span.
|
|
<td nowrap>
|
Stops text from automatically line wrapping.
|