The HTML code for my contact form is:
I would like to know that where to put my Email Address, so if any user visits my website and contacts me via form, the email would go to my ID.Code:<form id="contact-form" method="post">
<fieldset>
<label><input name="email" value="Email" onBlur="if(this.value=='') this.value='Email'" onFocus="if(this.value =='Email' ) this.value=''" /></label>
<label><input name="subject" value="Subject" onBlur="if(this.value=='') this.value='Subject'" onFocus="if(this.value =='Subject' ) this.value=''" /></label>
<textarea onBlur="if(this.value=='') this.value='Message'" onFocus="if(this.value =='Message' ) this.value=''">Message</textarea>
<div class="buttons">
<a href="#" onClick="document.getElementById('contact-form').reset()">Clear</a>
<a href="#" onClick="document.getElementById('contact-form').submit()">Send</a>
</div>
</fieldset>
</form>
Thanks

