View video tutorial

HTML <noscript> Tag

HTML

The <noscript> element works only if the page script is not supported or turned off in the browser.

HTML <noscript> Tag


The <noscript> element defines a section to be inserted if the page script is unsupported or turned off in the browser.

The <noscript> tag defines an alternate or fall-back content to be displayed to users if script is not supported or disabled in the browser.

Global attributes

Global attributes may be applied on all elements, although some elements may have no effect on them.

<accesskey>, <class>, <contenteditable>, <contextmenu>, <data-*>, <dir>, <draggable>, <dropzone>, <hidden>, <id>, <lang>, <spellcheck>, <style>, <tabindex>, <title>, <translate>.

Learning with HTML Editor "Try it Now"

You can edit the HTML code and view the result using online editor.

Example

<script>
    document.write("Hello HTML!")
</script>
<noscript>Sorry, This browser does not support JavaScript!</noscript>
Try it Now »

Click on the "Try it Now" button to see how it works.