HTML CODES

< HTML > Begin the HTML page

< HEAD > Begin the heading of the document 

< TITLE > Designate the title of the page

< BODY > Begin the body of the document (attributes: BGCOLOR)

< H1 > Format a level 1 heading 

< H2 > Format a level 2 heading 

< H3 > Format a level 3 heading 

< H4 > Format a level 4 heading 

< H5 > Format a level 5 heading 

< H6 > Format a level 6 heading 

< BR > Add a line break 

< P > Set apart a group of text as a paragraph (attributes: ALIGN)

< I > Format the text using italics 

< B > Format the text with boldface

< UL > Create an unordered list 

< OL > Create an ordered list 

< LI > Specify a list item 

< FONT > Specify font characteristics (attributes: FACE, COLOR) 

< A > Designate a hyperlink (attributes: HREF, TARGET, NAME) 

< IMG > Designate an image (attributes: SCR, ALT, HEIGHT, WIDTH, ALIGN, BORDER)

< TABLE > Designate an HTML table (attributes: BORDER, WIDTH, CELLPADDING, CELLSPACING) 

< TR > Designate a table row (attributes: BGCOLOR)

< TD > Designate a table cell (attributes: COLSPAN, ALIGN, VALIGN, BGCOLOR, ROWSPAN)

< TH > Designate a table heading 

< FRAMESET > Designate a frames page (attributes: COLS, ROWS)

< FRAME > Designate a frames page (attributes: SCR, NAME)

< NOFRAMES > Designate code that will be displayed if frames are not supported 

< FORM > Designate the start of a form (attributes: ACTION, METHOD)

< INPUT > Designate a form element (attributes: NAME, TYPE, VALUE) 

< SELECT > Designate a pull-down menu (attributes: name)

< OPTION > Designate an item in a pull-down menu (attributes: VALUE) 

< TEXTAREA > Designate a text area to insert text (attributes: NAME, ROWS, COLS)