If you want a safer solution, my suggestion is this contact form generator service. Your email address will not be displayed anywhere, and you can use their anti-spam mechanism to avoid automated messages. And yes, their service is free.
contact form is not difficult to do. from any site you can take its contact us page html if you know how to take html from any website page. i am sending you the very simple html contact us form which you can use on your work. <form name=contact action=contact.php method=post> <div align="center"> <table> <tr> <td align=right>Name:</td> <td width="15"> </td> <td><input size=45 maxlength=45 type=text name=name style="font-family: Courier New; font-size: 10pt"></td></tr> <tr> <td align=right>Email Address:</td> <td> </td> <td><input size=45 maxlength=45 type=text name=from style="font-family: Courier New; font-size: 10pt"></td></tr> <td valign=top align=right>Message:</td> <td> </td> <td><textarea name=body rows=12 cols=60 style="font-family: Courier New; font-size: 10pt"></textarea></td></tr> <tr> <td> </td> <td> </td> <td><input type=submit value=" Submit " name=submitcontact style="font-size: 10pt; font-family: Tahoma"></td></tr> </table> </div> </form>
hey, i would save yourself the hassle, go to 123contactform or if using word press, install the contact form 7 plugin. easy
What are you going to do with the data? How will you save it? Use it? You will need some sort of server-side scripting language.
so easy, %%in html%% ---------------- <form action="contact.php" method="post"> Your name <input type="text" name="cf_name"> Your e-mail <input type="text" name="cf_email"> Message <textarea name="cf_message"> <input type="submit" value="Send"> <input type="reset" value="Clear"> </form>