Contact Form

sourfacedcyclop

New Member
Messages
221
Reaction score
0
Points
0
The only way I could think of making one without using a scripting language would be using the "mailto:" html tag. That method isn't every good, and proboly will not work like you want it to. The best way would to use php...
 

xPlozion

New Member
Messages
868
Reaction score
1
Points
0
you can, i remember one a while back solely on html, but i'm too lazy atm to look for it.

http://lmgtfy.com/?q=html+email+form










OK, so I was lying (about being too lazy :p)

HTML:
<form action="mailto:youremail@yourdomain.com?subject=form submission" method="post" enctype="text/plain">
<table><tr><td>

</td></tr>
<tr><td align=center>
<INPUT TYPE="submit" value="submit" style="color: #ffffff; background-color: #000000">
</td></tr></table>
</FORM>
CREDIT: http://www.htmlbasix.com/forms.shtml
 
Last edited:
Top