I have been searching for html code for opt in email contact form and i just cannot get them to work. Can someone please send me a contact form in html code so i can submit it in html code in my site when i get one. name address post code country telephone email submit button All the above in html code with css to make it look cool, and how do i get it to submit to my email address Thanks in advance
No one is going to write it up for you and make it look "cool" too. What your asking for is a basic HTML thing and can be done (no recommended) with tables. Another option is using contact forms that are hosted by other websites, they are easy to build with no HTML knowledge needed.
Well, benji .. I think you need a whole contact form to be well styled, and also to work and send emails. if what I got is right then it's not just html. you will need html, and css for positioning, and styling your form. But a form which looks cool will not send any emails unless you use PHP script to send emails. Styling a form is not a big deal but you should use good PHP script to send emails. I recommend PHP Mailer. It's free to use.
<html> <head> </head> <body> <table> <tr><td>Name</td><td><input type="text" name ="text"/></td></tr><tr><td>Address</td><td><input type="texarea" name ="address"/></td></tr><tr><td>Post code</td><td><input type="text" name ="postcode"/></td></tr><tr><td>country</td><td><input type="text" name ="telephone"/></td></tr><tr><td>email</td><td><input type="text" name ="email"/></td></tr><tr><td colspan="2" align="right"><input type="submit" name ="submit" /></td></tr> </table> </body> </html>
You are going to need an autoresponder system to collect your list. Try doing a search for "autoresponders" and you will get many good ones. Then sign up and build your form, it will give you the code called "raw html" all you need to do is copy and paste that form. It will give you the code for the EXACT form you've built. It's very easy, try it. I hope this helps
here is full form <form action="contact.php" method="post"> Name : <input type="text" name="name"><br/><br/> Address : <input type="text" name="address"><br/><br/> Post code : <input type="text" name="post code"><br/><br/> Country : <input type="text" name="country"><br/><br/> Telephone : <input type="text" name="telephone"><br/><br/> E-mail : <input type="text" name="e-mail"><br/><br/> <input type="submit" value="Submit"> </form> i hope this will help you