I start to learn HTMl my self. Made a contact form and copied code block as:
<form id="ContactForm" action="">
<div>
<div class="wrapper">
<input type="text" class="input" >Your Name:<br>
</div>
<div class="wrapper">
<input type="text" class="input" >Your E-mail:<br>
</div>
<div class="wrapper">
<textarea name="textarea" cols="1" rows="1"></textarea>Your Message:<br>
</div>
<a href="#" onClick="document.getElementById('ContactForm').submit()">Send</a>
<a href="#" onClick="document.getElementById('ContactForm').reset()">Clear</a>
</div>
</form
The page show ok on browser, but the user cant send the form to my mail. I know may mail suppose be in somewhere on code,
What's missing?
Thanks
Haim Rodrik