This is your contact form:
Code:
<form id="ContactForm" form action="contact.php" method="post" id="form" class="ContactForm">
<div>
<div class="wrapper">
<span>Your Name:</span><input type="text" class="input" >
</div>
<div class="wrapper">
<span>Your E-mail:</span><input type="text" class="input" >
</div>
<div class="textarea_box">
<span>Your Message:</span><textarea name="textarea" cols="1" rows="1"></textarea>
</div>
<span> </span>
<a href="#" class="button" onClick="document.getElementById('ContactForm').reset()">Clear</a>
<a href="#" class="button" onClick="document.getElementById('ContactForm').submit()">Send</a>
</div>
</form>
You have two
ID's (the dark green) You can not have more than one ID for the entire html page. Remove the ID="form".
The dark red attribute reads "form action". Remove the word form so that it is just action="contact.php".
Your contact email should be generated by contact.php. It should be in the same folder as the Contact.html file.
---------------------------------------
Instead of
Code:
<a href="#" class="button" onClick="document.getElementById('ContactForm').reset()">Clear</a>
<a href="#" class="button" onClick="document.getElementById('ContactForm').submit()">Send</a>
You could use
Code:
<input type="submit" value="Submit">
<input type="reset">
Better presentation.
======================================================================
Your search form is:
Code:
<form id="search" method="post">
<div>
<input type="submit" class="submit" value="">
<input class="input" type="text" value="Site Search" onblur="if(this.value=='') this.value='Site Search'" onfocus="if(this.value =='Site Search' ) this.value=''">
</div>
</form>
As you can see the form tag does not have the action attribute and that's where the info in the form is sent. You are not submitting the form to any thing. Add the action attribute and give it a file to process the information.