<noscript> - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:noscript

Introduction

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.

ItemValue
Element noscript
Local AttributesNone
Tag Style A start and end tag are both required
New in HTML5No
Changes in HTML5None
Style ConventionNone

Using the noscript Element

Demo Code

ResultView the demo in separate window

<!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>

Related Tutorials