Log In


sidebar 1

WoozWorld

Coming up! Stay Tuned!

sidebar 2

Coming Up! Stay Tuned!

sidebar 3

REGISTRATION FOR TECHNOLOGY STUDENTS!

Do you like quality posts? We are looking for authors who are interested in this website because we want different quality posts. You have something that we could be missing so why not give it a try now!

sidebar 4

WHAT IS CACHE? HOW TO REMOVE CACHE?

Do you want to know what is Computer Cache? Do you want to know how it effects your computer? Do you want to know why is it good or why is it bad? Do you want to clean them? Click Here!.

sidebar 5

CYBER SAFETY - TEENS AND PRE-TEENS

Do you want to know our right on the Internet? Do you want to keep yourself safe on the Internet? Click Here!

Showing posts with label HTML EMAIL FORM. Show all posts
Showing posts with label HTML EMAIL FORM. Show all posts

Thursday, February 24, 2011

How to make Email Form in HTML!

So you wanna know how to make email form in HTML right? Well, lets get started on that! First of all, the text in red means that you can change that text to your own email address. So here is our Code:


Code:
<form action="mailto:you@youremailaddress.com"
method="POST" 
enctype="multipart/form-data"
name="Email Form">


Name:<br>
<input type="text" name="Name" size="20">


Email:<br>
<input type="email" name="Email" size="20">


Subject:<br>
<input type="text" name="Subject" size="20">


Message:<br>
<textarea name="Visitor Message" cols="20" rows="10"></textarea>


<input type="submit" value="Submit">
</form>

Here is an Example:


Name:



Email:



Subject:



Message:



Well, that's all you have to do. Copy and paste the code in html website. If you wanna try it but do not have anything to try it on then here is what you do:
  • Open NotePad:
  • Insert the Following Code:


<html>
<head>
<title>Testing!</title>
<body>


<form action="mailto:you@youremailaddress.com"
method="POST" 
enctype="multipart/form-data"
name="Email Form">

Name:<br>
<input type="text" name="Name" size="20">

Email:<br>
<input type="email" name="Email" size="20">

Subject:<br>
<input type="text" name="Subject" size="20">

Message:<br>
<textarea name="Visitor Message" cols="20" rows="10"></textarea>

<input type="submit" value="Submit">
</form>
</body>
</head>
</html>

  • After that, save it on desktop as "Contact Form.htm".
  • Now Double Click on that file and you should see the form!
That's It. If you have any questions then feel free to use our contact form or leave your question in a comment.

Share

Twitter Delicious Facebook Digg Stumbleupon Favorites More