This is a heading 1 (which can only be used once)

HTML References

This is simple text

This is a
LINEBREAK

This 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 attribute
  1. This is an ordered list
  2. as you can see each item is
  3. NUMBERED!
  4. There can also be a list:

This is how to add images

This is an image from a website

HTML Dog

This is an image from my images directory

IL-31

This is how create tables

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

This is how create forms

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.

Forms - Input types

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

Forms - Multiline texbox

Forms - Dropdown Selection Box

The selection box may also have a pre-selected option through a selected attribute:

Forms - Names

All forms need a name to each input to idenitfy what the input is answering in the form

Complete Form Example:

Name:

Species:

Comments:

Are you:

Male

Female

An hermaphrodite

Asexual

This is how to link things

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

CSS References