
Re: How do I attach a Word Document to my webpage![]()
Posted by Max on 7/19/05
On 7/19/05, Sherri wrote:
> Hi. I have my webpage built on Frontpage. I want to attach
> a Word Document to one of the pages. When I publish to my
> site, the document is not there. Can someone give me
> directions to get this to work? Thanks!
You upload the Word file (.doc) separately into your
webspace, either in the same directory as your HTML, or you
may want to create a directory for uploaded files.
You may have to upload using an FTP program or an online
upload utility provided by your webhost.
Then, you make a link on your web page to the file ...
Example:
<.a href="userlist.doc">userlist.doc (34K)<./a>
or ... if you made a separate directory:
<.a href="/uploads/userlist.doc">userlist.doc (34K)<./a>
(periods inserted for this editor)
It's always nice to let the user know how big the file is
before they download it. They can either open it in Word,
or download onto their hard-drive. If they don't have
Microsoft Word, they can't view it either way. That's why
many people convert to .pdf files (cross platform, PC/MAC).
--max--