This is simple text
This is aThis is a paragraph
this is another paragraph
And this is emphasized while this is of strong importance, or basically italic and bold.
This is an image from a website
This is an image from my images directory
| Row 1, cell 1 | Row 1, cell 2 | Row 1, cell 3 |
| Row 2, cell 1 | Row 2, cell 2 | Row 2, cell 3 |
| Row 3, cell 1 | Row 3, cell 2 | Row 3, cell 3 |
| Row 4, cell 1 | Row 4, cell 2 | Row 4, cell 3 |
A form is used to collect information inputed by a user, starting with a form tag,
If you are using a form for a user to submit information, an action attribute is needed to tell the form where its contents will be sent to.
A method attribute tells the form how the data in it is going to be sent and it can have the value get, which is default, and latches the form information onto a web address,
or value post, which (essentially) invisibly sends the forms information.
This is an Input text box which can also have a value attribute, which sets the initial text in the textbox.
This is an Input password box, the same as a text box but the text is hidden from the user.
This is an Input checkbox, it can have a checked so that it's starts automatically checked.
This is an Input radio checkbox, it only allows for one to be checked in a group and it may also have a checked value.
This is an Input submit box, it is a button that when selected will submit a form, the text that appears on the button can be changed with a value attribute
The selection box may also have a pre-selected option through a selected attribute:
All forms need a name to each input to idenitfy what the input is answering in the form
Complete Form Example:
To a website - html dog in this case
To another file in the directory - index in this case
To an ID attribute tag in this same page - references in this case