What purpose does a <script> tag serve inside of a <noscript> tag?
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:
Please Login to comment...