Hi,
I'm trying to create contact us form
I have to create three page
1-index.html
2-main.css
3-contact.php
can you explain how can I make it like this
Click Here
and what is wrong with my code
one more question what should I put in contact.php page ? with explanation please
this is my index.html page
<form action="contact.php" method="post" name="contact">
<br/>
<label> First Name</label>
<input name="nmw" type="text" size="30" maxlength="30" />
<br/>
<label> Last Name</label>
<input name="last" type="text" size="30" maxlength="30" />
<br/>
<label>Email Address</label>
<input name="Email" type="text" size="30" maxlength="30" />
<br/>
<label>Telephone number</label>
<input name="number" type="text" size="30" maxlength="30" />
<br/>
<label> comment </label>
<textarea name="comment" cols="40" rows="15"></textarea>
<br/>
<input name="Clear All " type="button" value="Clear " />
<input name="Send " type="button" value="Send " />
</form>
and this is main.css page
#wrapper{
}
#form{
text-align:left; margin:50px;
}
#background{ background-color:#6CF;
}
#label{
float:right; width:150px; margin-top:5px; text-align:right; display:block; background:none;
}
#submit{
background:none;
}
#input{
width:300; margin:0 0 16px 10px; border:1px; #bbb solid; padding:5px; background:none;
}
#select{
margin-bottom:20px;
}