Download Links
Posted by admin | Posted in HTML Tutorial | Posted on 11-08-2010-05-2008
0
Download links are same as text links. Problems come when you want to place image links for download.
The solution for this problem is to use a thumbnail link for the images.
Example:
- <a href=”http://www.xyz.com/pics/htmlT/blanktext.zip”>Text Document</a>
Download a Text Document:
- Text Document
Default Links; Base
<base> tag is used to provide a default link for all the other links on your page
It’s a good practice to set a base tag just in case your links become bugged somewhere down the line.
the base is usually set to the home page.
Example:
- <head>
- <base href=”http://www.xyz.com/”>
- </head>
