The HTML <noscript></noscript> element is used to provide an alternate content for users that have disabled scripts in their browser or have a browser that doesn’t support client-side scripting. This element can contain all the elements that you can find inside the body element of a normal HTML document. The content inside this element will only be displayed if scripts are not supported, or are disabled in the user’s browser.
Attributes
HTML example:
<script type="text/javascript">
document.write("Hello World!")
</script>
<noscript>Your browser does not support JavaScript!</noscript>
A browser without JavaScript support will display the text within the <noscript> element.