Using the noscript Element to Redirect the User's Browser - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:noscript

Description

Using the noscript Element to Redirect the User's Browser

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
   <head> 
      <noscript> 
         <meta http-equiv="refresh" content="0; http://www.java2s.com"> 
      </noscript> 
   </head> 
   <body> 
      <p>
          I like 
         <code id="myId">HTML</code>
          and CSS. <!--from  ww  w  .  java2s  .c om-->
      </p> 
      <a href="http://java2s.com">Visit java2s.com</a> 
      <a href="page2.html">Page 2</a>  
   </body>
</html>

Related Tutorials