Bantayan Island: *Adding Contact Page To A Website*

Friday, October 10, 2014

*Adding Contact Page To A Website*


How To A Contact Page To A Blog
1. Go to blogger dashboard.
2. On the drop down menu select pages.
3. Click new page.
4. Name the page to contact.
5. Click html (beside compose).
6. Copy the form below and paste.
7. Click publish.

<form action="#" enctype="multipart/form-data" id="contact_form" method="POST">
<div class="row">
<label for="name">Your name:</label><br />
<input class="input" id="name" name="name" size="30" type="text" value="" /><br /></div>
<div class="row">
<label for="email">Your Email:</label><br />
<input class="input" id="email" name="email" size="30" type="text" value="" /><br /></div>
<div class="row">
<label for="message">Your message:</label><br />
<textarea class="input" cols="30" id="message" name="message" rows="7"></textarea><br /></div>
<input id="submit_button" type="submit" value="Send email" />
</form>
   

No comments:

Post a Comment