Create contact forms in HTML that work on your blogger or website
A contact form is a must if you want to hear from visitors.
Facebook pages and email newsletters are two key places to use contact forms.
Here, we show you how to generate code for an HTML contact form, including a PHP
script that will send form responses to you.
copy the code below, and paste to your blogger layout or create page then go to html option paste the code, after that write contact us (post title) final save or apply changes. OR PUBLISH
<form id="contact_form" action="#" method="POST" enctype="multipart/form-data">
<div class="row">
<label for="name">Your name:</label><br />
<input id="name" class="input" name="name" type="text" value="" size="30" /><br />
</div>
<div class="row">
<label for="email">Your email:</label><br />
<input id="email" class="input" name="email" type="text" value="" size="30" /><br />
</div>
<div class="row">
<label for="message">Your message:</label><br />
<textarea id="message" class="input" name="message" rows="7" cols="30"></textarea><br />
</div>
<input id="submit_button" type="submit" value="Send email" />
</form>
Create contact forms in HTML that work on your blogger or website
Reviewed by Unknown
on
June 14, 2017
Rating:
No comments