Forms Tutorial
There are many types of forms that can be used on webpages. The most common type of form is the mailto form, which automatically brings up an email window with the address for the contact person in the address line.
To write this code, you do the following:
<a href=mailto: "
[email protected]
">
This is how it appears:
Click here to email me!
You can also use forms to put password protection on your website.
<input type="password" name="phoenix" value="Password:">
This is how this will appear!
To add a submit button, you use this code:
<input type="submit" value="Enter!">
Click
here
to go to the next lesson!