How Do I Add A Downloadable Form Into My Web Site?
Rather than having the visitor download a form, you could just create an HTML form on the page, have the visitor fill it out and have the data emailed directly to you that way. There are a number of different ways this can be done, all depending on what kind of site you have and what hosting service you run it on. The service (or your sever, if you run it yourself) must be capable of handling email requests (all hosting services do), and you would need to probably write a script to create the form and handle the sending of the data. The latter would also depend on what you can run on the host server (PHP, Perl, JSP, ASP, whatever). You could do something like this in JavaScript, but I would be concerned with security, since JS runs on the client and is a little more of a hassle to secure.