Open In App

What purpose does a <script> tag serve inside of a <noscript> tag?

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

Usage of NoScript tag:
The tag defines alternate content that will be displayed if the user has disabled script or browser does not support script.
It can be used inside both <head> and <body> tag.

Syntax:
<noscript> Contents… </noscript>

Example:




<html>
  
<head>
    <title>wbr Tag</title>
    <style>
        body {
            text-align: center;
        }
          
        .gfg {
            font-size: 40px;
            font-weight: bold;
            color: green;
        }
          
        .geeks {
            font-size: 25px;
            font-weight: bold;
        }
    </style>
</head>
  
<body>
    <div class="gfg">GeeksforGeeks</div>
    <div class="geeks">
        <code><noscript></code> Tag</div>
    <script>
        document.write("GeeksforGeeks!")
    </script>
    <noscript>A computer science portal</noscript>
</body>
  
</html>


Output:


Last Updated : 16 Apr, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments