HTML | <noscript> Tag
The <noscript> tag in HTML is used to display the text for those browsers which does not support script tag or the browsers disable the script by the user. This tag is used in both <head> and <body> tag.
Note: This tag is used in those browsers only which does not support scripts.
Syntax:
<noscript> Contents... </noscript>
Below example illustrates the <noscript> tag in HTML:
Example:
HTML
< html > < head > < title >noscript 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" >< noscript > Tag</ div > < script > document.write("GeeksforGeeks!") </ script > < noscript >A computer science portal</ noscript > </ body > </ html > |
chevron_right
filter_none
Output:
Supported Browsers: The browser supported by <noscript> tag are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari