Hey, I have a website with a contact form but i am struggling with the 'Submit' side of things. I really need the button to push the information to one of my emails. Please help!
This is my code (its all on an html page)...
<form action="#" id="contact-form">
<fieldset>
<div class="wrapper">
<div class="success"> Contact form submitted! <br> <strong class="color-1">We will be in touch soon.</strong> </div>
</div>
<div class="field">
<label class="name">
<input type="text" value="Name:">
<span class="error">*This is not a valid name.</span> <span class="empty">*This field is required.</span>
</label>
</div>
<div class="field">
<label class="email">
<input type="text" value="Email:">
<span class="error">*This is not a valid email address.</span> <span class="empty">*This field is required.</span>
</label>
</div>
<div class="field">
<label class="phone">
<input type="tel" value="Phone:">
<span class="error">*This is not a valid phone number.</span> <span class="empty">*This field is required.</span>
</label>
</div>
<div class="area">
<label class="message">
<textarea>Message:</textarea>
<span class="error">*The message is too short.</span> <span class="empty">*This field is required.</span>
</label>
</div>
<div class="clear"></div>
<div class="buttons-wrapper">
<a href="#" class="button" data-type="reset">Clear</a>
<a href="#" class="button" data-type="submit">Send</a>
</div>
</fieldset>
</form>
I was told to add this code to the bottom of it, but it didnt help.
Bookmarks