SCRIPT
The SCRIPT tag is used for scripting languages like JavaScript and VBScript. The script coding is placed between the opening and closing statements of the SCRIPT tag. To provide for browsers that don't support the SCRIPT tag, the code is usually placed inside the "< !-- ... -->" comment tags. For example:
<SCRIPT LANGUAGE="JAVASCRIPT"> <!-- Insert desired script here --> </SCRIPT>
SCRIPT Attributes:
LANGUAGE=" ... "
This attribute is used to define the type of scripting which follows. Examples are JavaScript or VBScript.
SRC="URL"
This attribute defines the absolute or relative location of the script to be used.
TYPE=" ... "
This attribute defines the MIME type of the script to be used within the document.