Heading Text <Hn> text </Hn> (where n is a whole number 1-6)
Head <HEAD> header-section </HEAD> Introduces markup that describes an HTML document and its contents. Use TITLE and META tags in the head section. Horizontal Rule <HR> Draws a horizontal line across the screen There is no </HR> tag. HTML <HTML> whole-document </HTML> Defines an HTML document. Should be the first tag in the entire document, and the </HTML> tag should be the last. Italic <I> text </I> Text that should be shown in italics. Inline Image <IMG SRC="URL"> Displays an image referred to by a URL and must contain at least an SRC attribute. SRC="URL" - calls the image source, usually a GIF, PNG or JPEG file. ALT="text" - text to be displayed by a browser that does not display images. ISMAP="url" - sets the image as a server side image map. ALIGN="align" - should be one of TOP, MIDDLE, or BOTTOM. START=FILEOPEN - starts playing the resource when it is opened. START=MOUSEOVER - starts playing the resource when the user places the mouse over it. Is Index <ISINDEX> Valid in a HEAD section, declares that the current HTML document is a searchable index. The user will be prompted for keywords to search for. A new URL will be formed by taking the base address of the current document and adding a '?' character to it, followed by the keywords separated by '+' characters. The URL attribute overrides the base address. The prompt attribute changes the prompt from the default one supplied by the browser. Java Applet <APPLET attributes> content </APPLET> Runs a Java applet in a page. Content consists of optional PARAM tags, ordinary text and markup to be displayed by browsers that cannot run Java applets, and a TEXTFLOW tag if no ordinary text and markup is included. The attributes of the APPLET tag are: CODEBASE="base" - sets the base directory for pathing to applets.. CODE="code" - URL of the applet. NAME=" name" - the name of the applet. ALIGN="align" - either LEFT, RIGHT, TOP, MIDDLE, or BOTTOM. ALT="text" - alternative text to be displayed by browsers that do not support applets. HEIGHT="height" - height of the applet in pixels. WIDTH="width" - width of the applet in pixels. HSPACE="n" - leaves a space n pixels wide either side of the applet. VSPACE="n" - leaves a space n pixels wide above and below the applet. DOWNLOAD="n" - assign numbers to applets to determine the order in which they are downloaded. Keyboard <KBD> text </KBD> Renders text in a fixed width font dependent on browser presets. Most browsers use the same font for the KBD, SAMP, TT and CODE tags. Line Break <BR> Breaks the current line of text. Not needed inside a PRE element. There is no </BR> tag. Link <LINK REL=relationship HREF="URL"> <LINK REV=relationship HREF="URL"> Used in the HEAD section of a document. Has all the same attributes as the anchor tag. REL - specifies the relationship between this document and the link. REV - specifies a reverse relationship while the HREF attribute specifies the URL of the link. Relationships: REL=Home - points to home or top page in hierarchy. REL=ToC - points to a table of contents. REL=Index - points to an index for the current page. REL=Glossary - points to a glossary. REL=Copyright - points to a page with copyright information for the current page. REL=Up - points to the pages parent in the hierarchy. REL=Next - points to the next page in a series of pages. REL=Previous - points to the previous page in a series of pages. REL=Help - points to information that may further explain the page to the user. REL=Bookmark - points to a particular location within a long document. REL=StyleSheet Link points to a style sheet that will be used to render the current document. TITLE - used to label the bookmark. List Item <LI> content </LI> Defines an entry in a list either ordered (OL) unordered (UL) menu(MENU) or directory(DIR) The list item tag defines one entry in an ordered, unordered, menu, or directory list. Other tags may be embedded in list items. Listing <LISTING> text </LISTING> Renders text showing a program listing. It should no longer be used because of its poor handling of nested tags | Tag List <!-- &tag; A ADDRESS APPLET AREA B BASE BASEFONT BGSOUND BIG BLINK BLOCKQUOTE BODY BR CAPTION CENTER CITE CODE COL COLGROUP DD DFN DIR DL DT EM EMBED FONT FORM FRAME FRAMESET Hn HEAD HR HTML I IFRAME IMG INPUT TYPE=CHECKBOX INPUT TYPE=FILE INPUT TYPE=HIDDEN INPUT TYPE=IMAGE INPUT TYPE=PASSWORD INPUT TYPE=RADIO INPUT TYPE=RANGE INPUT TYPE=RESET INPUT TYPE=SCRIBBLE INPUT TYPE=SELECT INPUT TYPE=SUBMIT INPUT TYPE=TEXT ISINDEX KBD LI LINK LISTING MAP MARQUEE MENU META MULTICOL NOBR NOFRAMES OBJECT OL P PARAM PLAINTEXT PRE SAMP SCRIPT SMALL SPACER STRIKE STRONG SUB SUP TABLE TBODY TD TEXTAREA TFOOT TH THEAD TITLE TR TT U UL VAR WBR XMP |