<noscript>
element defines a section of HTML to be inserted if a script type
is unsupported or if scripting is currently turned off.
<noscript>
element defines a section of HTML to be inserted if a script type
is unsupported or if scripting is currently turned off.
noscript element represents nothing if scripting is enabled,
and represents its children if scripting is disabled.
head element, the
noscript element must contain only
link,
style, and
meta elements
noscript tag appearing in the head
cannot contain an <a href=""></a> element, for example.
(Doing so will cause validation to break)
<noscript> <a href="https/www.mozilla.com">Ext Link</a> </noscript>
<noscript>Warning! This browser does not use JavaScript</noscript>
nojs.css is placed BELOW
js.css
<head>
<link rel="stylesheet" href="js.css">
<noscript><link rel="stylesheet" href="nojs.css"></noscript>
</head>