Last active
March 4, 2016 16:02
-
-
Save nhudesign/e1ee52b441e2db8395b1 to your computer and use it in GitHub Desktop.
Contact form on an HTML website
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form class="form" action="mail.php" method="post"> | |
<!-- Name Field Start --> | |
<div class="name"> | |
<input type="text" placeholder="YOUR NAME" name="name"> | |
</div> | |
<!-- Name Field End --> | |
<!-- Email Start --> | |
<div class="email"> | |
<input type="email" placeholder="YOUR EMAIL" name="email"> | |
</div> | |
<!-- Email End --> | |
<!-- Meaasage Start --> | |
<div class="message"> | |
<textarea placeholder="YOUR MESSAGE" name="message"></textarea> | |
</div> | |
<!-- Message End --> | |
<!-- Submit Button --> | |
<button type="submit" value="send">submit</button> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment