Learn to Create Web Pages Using HTML
Home
Beginning Your Page
List Tags
Text Styles
Links, Images, Backgrounds and Text Colors
HTML Reference List
|
HTML Reference List
Structure Tags
Comment tag
... surrounds entire HTML document
... encloses the heading and title of HTML document
... encloses title of HTML document
... encloses body of HTML document
Links
... creates a link and has attributes
HREF="..." This links to another url of another page
NAME="..." names the anchor
TARGET="..." tells the window to open link in
REL="..." forward link types
REV="..." reverse link types
TABINDEX="..." tells the order of the tabs
List Tags
... a numbered list
an unordered list, no numbers just bullets
a list item
a definition list
- a definition term
- a definition definition
Altering Text
... emphasizes text
... makes text bold
>TT<... shows typewriter font
>I<... shows Italic text
... makes text bold
... a citation
Images
places an image in the document, includes attributes
SRC="..." is the URL of the image inside the source tag
ALIGN="..." tells where text will be aligned
HEIGHT="..." the height of the image in pixels
WIDTH="..." the width of the image in pixels
VSPACE="..." how much is between image and text
HSPACE="..." the space on the left or right of the image
Table Tags
makes a table
BORDER="..." size of the table border
... table caption
ALIGN="..." the place where the caption will be aligned
... | a table heading
ALIGN="..." the alignment of the table cells
ROWSPAN="..." the number of rows the cell spans
COLSPAN="..." the number of columns the cell spans
... | table data
ALIGN="..." alignment of the table data
ROWSPAN="..." the amount of rows cell spans
COLSPAN="..." the amount of columns cell spans
Back
Home
|