I cant seem to get my contact form working. Here is my contact form code:
<form action="MAILTO: Dana@dogmother.ca" method="post" >
<div class="to">
<input type="text" class="text" value="Name" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Name';}"style="margin-left: 10px">
<input type="text" class="text" value="Email" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Email';}" style="margin-left: 10px">
</div>
<div class="to">
<input type="text" class="numbers" value="Phone Number" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Phone Number';}"style="margin-left: 10px">
<input type="text" class="text" value="Subject" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Subject';}" style="margin-left: 10px">
</div>
<div class="text">
<textarea value="Message:" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Message';}">Message:</textarea>
</div>
<div>
<a href="#" class="submit">Submit</a>
</div>
</form>
I have tried changing the mailto
to my address and it still hasn't sent then I saw the submit button with a herf link but I don't know if I need to use or how to use that to make it work.