| |
<A>
|
|
| |
Also called the anchor tag, identifies a link or a location within a document. You commonly use this tag to create a hyperlink, using the HREF= attribute. You can also use the <A> tag to identify sections within a document, using the NAME= attribute.
EXAMPLE: <A HREF="http://www.stamdesigns.com/">Stam Designs</a>
|
|
| |
|
|
| |
|
|
| |
<ABBR>
|
|
| |
Specifies an abbreviated structure for this element.
EXAMPLE: <ABBR TITLE="Hypertext Markup Language">HTML</ABBR>
|
|
| |
|
|
| |
|
|
| |
<ACRONYM>
|
|
| |
Indicates an acronym in a document.
EXAMPLE: <P><ACRONYM>HTTP<ACRONYM> stands for HyperText Transfer Protocol</P>
|
|
| |
|
|
| |
|
|
| |
<ADDRESS>
|
|
| |
In a document, distinguishes an address from normal document text.
EXAMPLE: I live at: <ADDRESS>669 some street , some town, some city, postcode</ADDRESS>
|
|
| |
|
|
| |
|
|
| |
<APPLET>
|
|
| |
Embeds a Java applet object into an HTML dcoument. Typically, items that appear inside the <APPLET> tags allow browsers that do not support Java applets, to view alternative text. Browsers that do support Java ignore all information between the <APPLET> tags.
EXAMPLE: <APPLET CODE="something.class">It appears your browser doesn't support Java.</APPLET>
|
|
| |
|
|
| |
|
|
| |
<AREA>
|
|
| |
Defines an area within a client-side imagemap defination. It indicates an area where vistors can choose to link to another coument.
EXAMPLE: <AREA SHAPE="rect" COORDS="25,10,50,30" HREF="page.php">
|
|
| |
|
|
| |
|
|