Last active
March 23, 2023 10:03
-
-
Save sjozsef/3e18fa773caa8c931a20 to your computer and use it in GitHub Desktop.
bootstrap-contact-form-7.html
This file contains 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
<hr /> | |
<div class="row"> | |
<div class="col-md-4"> | |
[text* your-name class:form-control placeholder "Name (required)"] | |
</div> | |
<div class="col-md-4"> | |
[email* your-email class:form-control placeholder "Email (required)"] | |
</div> | |
<div class="col-md-4"> | |
[text your-subject class:form-control placeholder "Subject"] | |
</div> | |
</div> <!-- end of .row --> | |
<hr /> | |
<div class="row"> | |
<div class="col-md-12"> | |
[textarea your-message class:form-control placeholder "Message"] | |
</div> | |
</div> | |
<hr /> | |
<div class="row"> | |
<div class="col-sm-12"> | |
[submit class:btn-block class:btn class:btn-primary class:btn-lg "Send" ] | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thank you, you saved my time!