
The Complete Idiot's HTML Tag Reference
| Index
| Previous Tag: <NOLAYER>
| Next Tag: <OBJECT>
|
<NOSCRIPT>
Specifies text that will be displayed by a browser that doesn't support the <SCRIPT> tag.
Support:
-
Notes:
- This tag requires the </NOSCRIPT> end tag.
Attributes:
- ID
= "Text"
An alphanumeric string that uniquely identifies the tag.
-
Support:
-
HTML Standard | Internet Explorer | Netscape Navigator |
4.0 and later |
4.0 and later |
Not supported |
Notes:
-
Although you can use letters and numbers for the ID, the first character must be a letter.
- LANG
= "Text"
The language used by the tag's attribute values and text content.
-
Support:
-
HTML Standard | Internet Explorer | Netscape Navigator |
4.0 and later |
Not supported |
Not supported |
- STYLE
= "Text"
The style or styles to use with the tag.
-
Support:
-
HTML Standard | Internet Explorer | Netscape Navigator |
4.0 and later |
4.0 and later |
Not supported |
Notes:
-
If you enter multiple style properties, separate each one with a semi-colon (;).
Example:
<SCRIPT LANUAGE="JavaScript">
<!--
document.write("Your browser is very smart!")
//-->
</SCRIPT>
<NOSCRIPT>
Your browser is very dumb!
</NOSCRIPT>
How It Looks:
-
| Index
| Previous Tag: <NOLAYER>
| Next Tag: <OBJECT>
|
|