HTML CSS examples for HTML Tag:noscript
The noscript element displays content who have disabled JavaScript or who are using a browser that doesn't support Javascript.
The following table summarizes the noscript element.
Item | Value |
---|---|
Element | noscript |
Local Attributes | None |
Tag Style | A start and end tag are both required |
New in HTML5 | No |
Changes in HTML5 | None |
Style Convention | None |
Using the noscript Element
<!DOCTYPE html> <html> <head> <noscript> </noscript> </head><!-- w ww.jav a 2s . com--> <body> <h1>Javascript is required!</h1> <p>You cannot use this page without Javascript</p> <p> I like <code id="myId">HTML</code> and CSS. </p> <a href="http://java2s.com">Visit java2s.com</a> <a href="page2.html">Page 2</a> </body> </html>