HTML
|
JavaScript
Alignment
Basics
Character Codes
Colors
CSS
DIVS
Forms
Frames
Links
Lists and Bullets
Meta Tags
Multimedia
Pictures
Spacing
Tables
Text
Image Map Links
Internal Links
Local Links
Picture Links
Target Page
Text Links
Local Links
257
Local Links
Description
This link is very similar to the normal link tag, only the area it links to is different. The starting tag is <A HREF="file:///X:/..."> and the closing tag is </A>. The text between the tag is what text will be the link. In the area the link is linking to, the X is replaced with the drive letter and the ... is replaced with the directory you are linking to. Here is an example using the local link.
Code
<A HREF="file:///C:/Windows/">
Click Here to go to C:Windows
</A>
Output
Click Here to go to C:Windows
Practice
<A HREF="file:///C:/Windows/"> Click Here to go to C:Windows </A>
Advertisements