Summary of HTML Tags

Hyper-Links

<a href="file.htm">hypertext</a>
Local Hypertext Link
Link to another document in the same folder/directory.

<a href="data/file.htm">
hypertext</a>
Local Hypertext Link
Link to another document in a folder/directory named "data" that is inside the directory containing the calling HTML document

<a href="../file.htm">
hypertext</a>
Local Hypertext Link
Link to another document in a folder/directory that is one level higher relative to the calling HTML document

    URL
Uniform Resource Locator
Address for Internet resources

<a href="URL">
hypertext</a>
Internet HyperText Link
Link to another Internet Site, specified by URL

<a name="xyz"<...>
Named Anchor
Marks a section of text within a document with name "xyz"

<a href="file.htm#xyz">
hypertext</a>
Link to Named Anchor
Jump to a named anchor within the same or another document

<a href="url">
<img src="file.gif"
border=0></a>
Internet HyperGraphic Link
Inline image acts as hyperlink to site specified by URL. Including the border=0 attribute will suppress the display of a bounding box around the image

<a href="mailto:
"[email protected]">... </a>
Internet Mail Link
Sets up email message to specified address

<img src="image.gif" 
usemap="#map_name">

<map name="map_name">
<area shape="rect"
   coords="x1,y1,x2,y2" 
   HREF=URL>
<area shape="rect" 
   coords="x1,y1,x2,y2" 
   HREF=URL>
</map>
Client-Side Image Map
Clickable image map interpreted by browser. ... can occur anywhere in this or another HTML file. Coordinates are top left and lower right corners of rectangular shaped region

Back to HTML

Hosted by www.Geocities.ws

1