/ Published in: HTML
Contact Form in HTML
- without CSS
- html 4 compatibility
- without CSS
- html 4 compatibility
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<form action="" method="post" class=""> <h1>Contact Form </h1> <label> <input type="text" id="name" name="name"/> </label> <label> <input type="text" id="email" name="email"/> </label> <label> <input type="text" id="message" name="message"/> </label> <label> <select name="subject" id=""> </select> </label> <label> <input type="button" value="send" /> </label> </form>