HTML Frequently Asked Questions
| Downloads:
| |
|---|---|
| Q. | How can I let people viewing my page download files, making the windows download box appear? |
| A. | Create a link to the file that you want people to download. For instance if it were a Zip file that you were offering for download and it was in the download folder it would look like this: <a href="download/your_file.zip">Click here to download</a> Your browser will automatically realize that this is a downloadable file and If that is the case then you could either compress the file into a Zip file
|
| Miscellaneous:
| |
| Q. | Some websites show a small graphic logo in the MSIE address bar, instead of the standard IE "e on a page" logo (Netscape does not show the alternate logo in its address bar). How can I get my site to put up a logo in the address bar? |
| A. | What you are seeing is Favicon. It is a 16×16 image that when linked correctly in your HTML code, it will show up in the address bar. You can make your own Favicon and then upload it to your site. In the HEAD section of your HTML code you would link to it like this: <LINK REL="SHORTCUT ICON" HREF="/favicon.ico"> Take a look at this site:
|