|
MORE OPTIONAL TAGS
|
DEFINITION
|
| <center>text</center> |
Centers items within tags. |
| <table> |
Start a table. |
| <tr> |
Start a table row. Use a <tr> for each row. |
| <td>text</td |
Identifies table data (similar to a cell). Use a <td> for each column. |
| <td align=right> |
Right align table data. |
| <body bgcolor="blue"> |
Add a colored background to the document body. |
| <font color="red"> |
Select font color. |
| |
Add a non-breaking space. (HTML only recognizes one space between words.) |
| <!-- Comment --> |
Add comments to the document that will not be displayed when viewing the page. |
| <img src="filename.gif"> |
Used to add .gif and .jpg images to the web page. No closing tag. |
| <a href="mailto:name@xyz.com"> |
An anchored link to create an e-mail hyperlink to a specified address. |
| <a href="filename.htm"> |
An anchored link tag to create a hyperlink to another web page. |
| Example: |
<a href="HTML_demo1.htm"><b><center>Go to Page 1</center></b> |
|
| Go to Page 1 |