0% found this document useful (0 votes)
2K views1 page

HTML Code For Blogger Contact Form

This document provides HTML code to create a contact form for a Blogger blog. The code includes fields for name, email, message, and a submit button. It also includes error and success messages. A YouTube video linked provides full instructions on how to add the contact form to a Blogger page. The contact form HTML allows bloggers to easily add a contact page to their blog.

Uploaded by

Hafifi Yusof
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2K views1 page

HTML Code For Blogger Contact Form

This document provides HTML code to create a contact form for a Blogger blog. The code includes fields for name, email, message, and a submit button. It also includes error and success messages. A YouTube video linked provides full instructions on how to add the contact form to a Blogger page. The contact form HTML allows bloggers to easily add a contact page to their blog.

Uploaded by

Hafifi Yusof
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

HTML Code for Contact Form for Blogger

Copy and paste the HTML code provided below to your Page on Blogger to create a separate Contact Me form on your
Blogger blog. For full instructions on how to create a Contact Form on blogger check my YouTube help video:
http://www.youtube.com/watch?v=jWDvybVQGVI

<form name='contact-form'>
<div>Your Name : </div>
<input class='contact-form-name' id='ContactForm1_contact-form-name' name='name'
size='30' type='text' value=''/>
<div>Your Email: <em>(required)</em></div>
<input class='contact-form-email' id='ContactForm1_contact-form-email' name='email'
size='30' type='text' value=''/>
<div>Your Message: <em>(required)</em></div>
<textarea class='contact-form-email-message' id='ContactForm1_contact-form-email-message'
name='email-message' rows='5'></textarea>
<p></p>
<input class='contact-form-button contact-form-button-submit' id='ContactForm1_contact-
form-submit' type='button' value='Send'/>
<div style='text-align: center; max-width: 450px; width: 100%'>
<p class='contact-form-error-message' id='ContactForm1_contact-form-error-message'></p>
<p class='contact-form-success-message' id='ContactForm1_contact-form-success-
message'></p>
</div>
</form>

You might also like