Description: This tag Puts an Image on your webpage. src: Sets the source page for the image. Border: Sets margin in pixels around a given Image Height: Sets the picture's Height in pixels Width: Sets the picture's Width in pixels Description: This tag Will place a Horizontal Rule (Bar) Across your webpage to help Partition different areas of your Webpage. Align: May be aligned on the page to either, Right, Left, or Center. Size: sets the Height of the Horizontal Rule" & Det & "Width: Sets the Width of the Horizontal Rule Text Description: This tag will Set the TitleBar of a browser to whatever is contained within the "TITLE" tag. Description: This tag lets you add commented HTML Code to your webpage and will not show up when users visit it the page. Click Me! Description: This tag lets you add a Clickable Weblink to your Website. Text Description: Displays text as normal, but is normaly used by search engines when a user types in a word to search for. Applet-Info Description: Used to instert custom made Java applets and Webpage based programs. CODEBASE="base": What "base" should be used when resolving source relative URLs. CODE="code": The URL of the applet to be run. NAME="applet name": The name of the applet. ALIGN="alignment": Here "alignment" should be one of LEFT, RIGHT, TOP, MIDDLE, or BOTTOM. ALT="text": Here "text" is the text to be displayed by a browser that does not support applets. HEIGHT=number: The height of the applet display area in pixels. WIDTH=number: The width of the applet display area in pixels. HSPACE=number: The space, in pixels, to leave to the left and right of the applet display area. VSPACE=number: The space, in pixels, to leave above and below the applet display area. DOWNLOAD=number: This specifies the order in which they are downloaded. HEIGHT=pixels: Specifies the height of the applet display area. HSPACE=pixels: Specifies the horizontal space in which the applet displays. NAME=name: Identifies an applet to other applets within the HTML page. TITLE=text: Specifies an advisory title string. Description: Sets the base url that all images or other url referencing tags will use. This tag must be put within the Tag. Description: Defines the base that relative font changes are based on. "number" usualy equaling 3 by default. Text Description: Displays text larger then usual Text Description: Makes the proceeding text Blink. Works with Netscape 1.1+. Not compatible with any current versions of Internet Explorer. Description: This makes up the Body of the document. It should be placed within the tag. This tag defines such things as: Background color, Background Image, Default text color, Link color, Background properties. Description: This sets the background to a solid color by Either colorname or by the Hexadecimal equivalent of a color. Description: This sets a tiling image for the background of your webpage. Description: Sets the default font color of the proceeding text unless color is otherwise defined by a font tag. Description: Sets the color of any links placed on your webpage. Text Description: Used for quoting passages from books and other sources. Description: Used to lock the Background Image on a webpage So when a user scrolls down the page the background does not move. A "Watermark" Effect. Text Description: Defines text that should be shown in a Fixed width Font content Description: Used in conjunction with the Table tag, and Should not be used with "" as it defines Collums in a table one at a time. Text Description: Defines the caption of a figure or table. This tag should only be used in conjunction with the Fig &/Or Table tag.
Description: Used to divide a document into seperate parts Align: This determines where the text following the DIV tag should be placed on the document. NOWRAP: This can be added after Align, ex;
. This attribute will tell the browser not to wrap the text. column data Column data Column data Column data Column data Column Data Description: Sets the properties of one or more columns in a table. HALIGN: Specifies the horizontal alignment of a column. VALIGN: Specifies the Vertical alignment of a column. WIDTH: Specifies the width of each column in the colgroup. SPAN: Determines the number of Consecutive columns in the group. Text Description: Defines text that should be "Emphasized". This tag usualy presents text in the "Itallic" Format. Alternate HTML Description: This tag is used to embed a plugin into a document. src: Defines the source of the plugin. The source is usualy defined by a URL. Width: Defines the width of the embedded object. Height: Defines the Height of the embedded object. Name: Indicates the name that other objects or elements should refer to this object by Other: This can be anything. It is a custom paramater within the program and is used in this format Other=Value. ex; volume=50 Text Description: Defines a footnote. The text that refers to this footnote does so with a standard anchor tag using anchor-name.
Description: Specifies a form that handles specific operations such as sending email and other information submissions and requests. Action: Tells the browser where the form is being handled. GET: Requests data from a server POST: Provides information to a server. ENCTYPE: Determines the way data will be encrypted before it is sent through the form. Description: Places multiple webpage documents into one webpage. src: Defines the source webpage of the frame. MARGINWIDTH: Defines the left and right margin thickness around the frame. MARGINHEIGHT: Defines the Top and Bottom margin thickness around the frame. SCROLLING: Defines wether or not scrolling is allowed in the frame, or if the frame should automatically scroll. Proper values are: yes, no, auto. NORESIZE: Prevents users from being able to drag and change the size of your Frames. FRAMEBORDER: Specifies if the frame border should be visible. Proper values are: yes or no. FRAMESPACING: Specifies the number of pixels that should be placed in between each frame. Align: Right, Left, Top, Bottom, Baseline, ABSBOTTOM, ABSTOP Description: Defines the width and height of the rows and columns in a frame. ROWS: specifies a list of values for the rows, each one can be specified as a percentage, a pixel value or as "*". The frameset will be split vertically into frames based on these values. Rows with "*"'s in them will have any remaining space split between COLS: specifies a list of values for the columns. The width of each column can be specified as a percentage, a pixel value or as "*". The frameset will be split into frames based on these values. Columns with a width of "*" will split the space that is not assigned to other columns. Contents Description: Defines the head of the html Document. Usualy this only contains the Tag. <HTML>Entire Webpage</html> Description: Defines the page as an HTML Document. This tag should be the first tag, and the last tag in the document. This tag is not always neccisary as most websites will make up for lacking <HTML> tags. <IFRAME src="" height="" width=""></IFRAME> <IFRAME 'attributes'></IFRAME> Description: Defines a floating frame. Align: Aligns the frame on the page either Left, Center, Top or Bottom FrameBorder: Defines a 3D border. Values are from 0 to 1 HEIGHT: Defines the hieght of the I FRAME. WIDTH: Defines the width of the I FRAME. MARGINHEIGHT/MARGINWIDTH: Sets the MARGIN Height or the Width of an IFRAME accordingly. NAME: Defines the name of the IFRAME so that other elements or objects may refer to it. --= Checkbox Input =-- <INPUT TYPE=CHECKBOX NAME=name VALUE=value> <INPUT TYPE=CHECKBOX NAME=name VALUE=value CHECKED> --=Text Boxes=-- <INPUT TYPE=TEXT NAME=name> <INPUT TYPE=TEXT NAME=name MAXLENGTH=length> <INPUT TYPE=TEXT NAME=name SIZE=size> <INPUT TYPE=TEXT NAME=name VALUE=value> --= File Input =-- <INPUT TYPE=FILE NAME=name ACCEPT=mime type list> --= Hidden Input=-- <INPUT TYPE=HIDDEN NAME=name VALUE=value> --= Image Input =-- <INPUT TYPE=IMAGE NAME=name SRC="URL"> --= Password Boxes =-- <INPUT TYPE=PASSWORD NAME=name> <INPUT TYPE=PASSWORD NAME=name MAXLENGTH=length> <INPUT TYPE=PASSWORD NAME=name SIZE=size> <INPUT TYPE=PASSWORD NAME=name VALUE=value> --= Radio Buttons =-- <INPUT TYPE=RADIO NAME=name VALUE=value> <INPUT TYPE=RADIO NAME=name VALUE=value CHECKED> --= Scribble =-- <INPUT TYPE=SCRIBBLE NAME=name SRC=URL VALUE=text> Description: There are very many input tags that may be used within an html document. The most common are Password input, Text input, Radio, and Checkboxes. In the above box there are many examples listed for your convenience. <INS>Text</INS> Description: Specifies text that has been inserted. Acts as a <I> tag. <ISINDEX> <ISINDEX HREF=URL> <ISINDEX PROMPT=prompt> Description: The isindex tag, which is only 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. <LANG>text</LANG> <HTML LANG="de"> <HTML LANG="en"> Description: Displays text in different languages <LI>Text</LI> Description: Puts a bullet in front of text. <MARQUEE> Text </MARQUEE> <MARQUEE ALIGN="Right, left, Top, bottom or center"> Text </MARQUEE> <MARQUEE BEHAVIOR="Scroll or Slide"> text </MARQUEE> <MARQUEE BGCOLOR="#000000"> text </MARQUEE> <MARQUEE BGCOLOR="Color"> text </MARQUEE> <MARQUEE DIRECTION="Right or Left"> text </MARQUEE> <MARQUEE HEIGHT=30> text </MARQUEE> <MARQUEE HEIGHT=50%> text </MARQUEE> <MARQUEE HSPACE=30> text </MARQUEE> <MARQUEE LOOP="Infinite"> text </MARQUEE> <MARQUEE SCROLLAMOUNT=N> text </MARQUEE> <MARQUEE SCROLLDELAY=N> text </MARQUEE> <MARQUEE WIDTH=30> text </MARQUEE> <MARQUEE VSPACE=30> text </MARQUEE> <MARQUEE WIDTH=50%> text </MARQUEE> Description: This tag scrolls text across the screen according to the attributes assigned to it. A simple marquee would be: <marquee> Hello world! </marquee> <META HTTP-EQUIV="HTTP header field name" CONTENT="field value"> Description: This tag is only valid within the <HEAD> Tag. HTTP-EQUIV="REFRESH": The browser will reload the page every "n" seconds. "n" the number of seconds is specified in the CONTENT attribute. If the attribute URL is specified the browser will load the page specified in it after the "n" seconds. META HTTP-EQUIV="Content-Type" CONTENT="text/html" charset="charset": This enables different international character sets to be selected. Netscape supports the following character sets: "us-ascii", "iso-8859-1", "x-mac-roman", "iso-8859-2", "x-mac-ce" "iso-2022-jp","x-sjis", "x-euc-jp", "euc-kr", "iso-2022-kr", "gb2312", "gb_2312-80" "x-euc-tw", "x-cns11643-1", "x-cns11643-2", "big5" <MULTICOL Cols="4" Width="25" Gutter="10"> Description: Acts as a container used to split the display into columns without using a Table or Fameset Tag. Cols: Defines how many columns to divide the display into. Width: Defines the width of each column. Gutter: Controls the Pixel space inbetween each column <NOBR>Text</NOBR> Description: Defines text that should not be wrapped automatically <NOFRAMES>Text</NOFRAMES> Description: Specifies HTML that can be used by browsers that do not support frames. Everything between the start and end tag is ignored by browsers that understand frames. <NOTE> text </NOTE> <NOTE CLASS=class> text </NOTE> <NOTE SRC=URL> text </NOTE> Description: Defines text that forms a note. Many browsers display it in an indented block surrounded by blank lines with a graphic. The CLASS attribute specifies the type of note, such as a warning, caution, or note. The graphic used will be based on the CLASS. The SRC attribute can be used to override the graphic that would be used by default. <P> text </P> <P ALIGN=alignment> text <P NOWRAP> text Description: Starts a new paragraph, equivalent to two BR tags. The </P> tag is optional if the tag is only to insert space between two paragraphs, but vital when attributes (for example, ALIGN="center") are to apply to the whole paragraph. The ALIGN attribute can be one of LEFT, RIGHT, or CENTER. The NOWRAP attribute will make it so lines are only broken at the <BR> tag. <PARAM NAME="name" VALUE="value"> Description: This tag is used in Conjunction with an Applet element or an Object Element. It passes information to the applet or Object with the GetParameter() method. <PLAINTEXT>Text</PLAINTEXT> Description: Defines all text within it's tags as plain text, and does not format HTML Tags, but simply displays them as normal text. <PRE> text </PRE> <PRE WIDTH=width> text </PRE> Description: Defines text that should be shown in a fixed width font with the line breaks and other whitespace specified by the page author. There is no need to use <BR> tags to indicate line breaks -- line breaks in the source will be displayed by the browser. In addition multiple spaces will be displayed as multiple spaces. Typically used for several lines of program code or for poetry. The width attribute specifies the maximum number of characters per line. <Q> text </Q> Description: Defines text that should be displayed as a short quote. For English language documents this means the text will be surrounded with double quote symbols. Quotes nested within quotes will typically be displayed surround by single quote symbols. <SCRIPT LANGUAGE="language"><!-- script statements --></SCRIPT> <Script> Script code </Script> The script tag identifies script code. This can be code to be executed at this point of the document or may contain functions for use later in the document. <SMALL>Text</SMALL> Description: Displays text smaller than usual. <STRIKE>Text</STRIKE> Description: Displays text with a slash through it. <STRONG>Text</STRONG> Descripton: Displays text in a Bold font. <SUB>Text</SUB> Description: Displays text in a size smaller then usual and places the text lower then usual. Example the "2" in H20. <SUP>Text</SUP> Description: Displays text in a size Larger then usual and places the text Higher then usual. Please Refer to the "Tables Information" under the "Options" menu. <TT>Text</TT> Description: Displays text in a Teletype Font <WBR> Description: Used in conjunction with the <NOBR> tag. Informs the browser of a pagebreak in a line of text that is defined as "NonBreaking"