| HTML Codes | Meaning | Parameters | |
|---|---|---|---|
| <HTML> | Begin HTML Document | ||
| <HEAD> | Begin Head | ||
| <TITLE>text</TITLE> | Page Title | ||
| </HEAD> | End Head | ||
| <BODY> | Begin Body | bgcolor, background, link, vlink, marginwidth, link | |
| </BODY> | End Body | ||
| </HTML> | End HTML Document | ||
| Text Format Tags | |||
| <I>text</I> | Italics | ||
| <B>text</B> | Bold | ||
| <SUP>text</SUP> | Superscript | ||
| <SUB>text</SUB> | Subscript | ||
| <TT>text</TT> | Typewriter | ||
| <BIG>text</BIG> | Large Font | ||
| <SMALL>text</SMALL> | Small Font | ||
| <BR> | Break | clear | |
| Logical Font Styles | |||
| <EM>text</EM> | Emphasis | ||
| <STRONG>text</STRONG> | Strong Emphasis | ||
| <DFN>text</DFN> | Defining Instance | ||
| <CODE>text</CODE> | Program Code | ||
| <SAMP>text</SAMP> | Sample Text | ||
| <KBD>text</KBD> | To Be Typed By User | ||
| <VAR>text</VAR> | Variables/Arguments | ||
| <CITE>text</CITE> | Citations | ||
| <H1>text</H1> | Header Text Sizes | align | |
| <H2>text</H2> | |||
| <H3>text</H3> | |||
| <H4>text</H4> | |||
| <H5>text</H5> | |||
| <H6>text</H6> | |||
| <H7>text</H7> | |||
| Alignment | |||
| <P>paragraph</P> | Paragraph | align | |
| <DIV>paragraph</DIV> | Without Spacing | align | |
| <BR> | Next Line | clear | |
| Tables | |||
| <TABLE> | Open Table | border,align,bordercolor,cellpadding,cellspacing,width,nowrap | |
| <CAPTION>text</CAPTION> | Table Caption | ||
| <TR> | Open Table Row | ||
| <TH>text</TH> | Table Header | align, valign, width, colspan, rowspan | |
| <TD>text</TD> | Table Data | align, valign, width, colspan, rowspan | |
| </TR> | Close Table Row | ||
| </TABLE> | Close Table | ||
| Lists | |||
| <OL> | Organized List | type, start | |
| <UL> | Unorganized List | type | |
| <LI> | List Item | type, start | |
| </OL> | Close Organized List | ||
| </UL> | Close Unorganized List | ||
| <DL> | Definition List | ||
| <DT>term<DD>definition | Definition List Tags | ||
| </DL> | Close Definition List | ||
| Other | |||
| <A>text/pic | Anchor (link) | target, href, name, rel, rev, title | |
| </A> | Close Anchor (link) | ||
| <IMG SRC="url"> | Image | align, border, height, width, alt, hspace, vspace | |
| <HR> | Header Rule | width, size, color, noshade | |
For even more HTML tags, visit w3schools.com's HTML reference page.