HTML TAGS

HTML TAGS

DESCRIPTION

 
     

<HTML>,</HTML>

The beginning and the end of the document. ("/" always denotes to end that particular command.

 

<HEAD>,<TITLE>,…

</HEAD>,</TITLE>

Using these will place the title of your page on the titlebar. Used right after the <HTML> command.

 

<BODY>,</BODY>

Place all text and tags for the body of your web page between the BODY tags.

 

<FONT SIZE=+3>… </FONT>

To specify a font size, use a positive or negative number after the "=" sign.

 

<BR>

This tag creates a line break. Use two to create a blank line.

 

<UL>,</UL> or <OL>, </OL>

UL creates a bulleted list; OL creates a numbered list. Start each list item with a <LI> tag.

 

<CENTER>, </CENTER>

Text between these tags will be centered on the page.

 

<B> …. </B>

Text between these tags will be boldface.

 

<I> …. </I>

Text between these tags will be italicized.

 

<A HREF = " "> … </A>

To create an underlined link, place the URL for the link between the quotation marks.

 

<IMG SCR = " ">

To display a graphic, place its filename and extension between the quotation marks.

 

<HR>

The HR tag inserts a horizontal line.

 

<TABLE> …. </TABLE>

To create a table (such as this one), insert <TR> (table rows) and <TD> (table data) between these tags. Don`t forget to end each row and data line with a </TR> or </TD>.