DONT ADD ANYTHING HERE!

The HTML <noscript> element defines a section of HTML to be inserted if a script type is unsupported or if scripting is currently turned off.
The noscript element represents nothing if scripting is enabled, and represents its children if scripting is disabled.
It is used to present different markup to user agents that support scripting and those that don't support scripting, by affecting how the document is parsed.

Notes

  1. In a head element, the noscript element must contain only link, style, and meta elements
  2. A noscript tag appearing in the head cannot contain an <a href=""></a> element, for example.

    (Doing so will cause validation to break)

Example

<noscript> <a href="https/www.mozilla.com">Ext Link</a> </noscript>

Example

<noscript>Warning! This browser does not use JavaScript</noscript>

Example

  1. The following works
  2. Note that nojs.css is placed BELOW js.css
    <head>
        <link rel="stylesheet" href="js.css">
        <noscript><link rel="stylesheet" href="nojs.css"></noscript>
    </head>
                        

References