I'm trying to get a contact form to work with my website
I want it to send an email to an email address when they press submit. I am new to all this (relatively) but no html quite well.
The current code on the page is this
How can i get this to work? an example email address would be contact[at]joshtatam.co.ukCode:<h2>Contact Form</h2> <form id="ContactForm" action=""> <div class="wrapper pad_bot1"> <div class="wrapper"> <div class="bg"><input type="text" class="input" /></div>Your Name:<br /> </div> <div class="wrapper"> <div class="bg"><input type="text" class="input" /></div>Your E-mail:<br /> </div> <div class="wrapper"> <div class="bg"><div class="textarea"><textarea name="textarea" cols="1" rows="1"></textarea></div></div>Your Message:<br /> </div> <div class="wrapper"> <a href="#" class="button" onClick="document.getElementById('ContactForm').submit()"><span><span>send</span></span></a> <a href="#" class="button marg_right1" onClick="document.getElementById('ContactForm').reset()"><span><span>clear</span></span></a> </div> </div> </form>
Many thanks
Josh