Noscript tag Example - HTML CSS HTML

HTML CSS examples for HTML:Script

Description

Noscript tag Example

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <meta charset="UTF-8"> 
  <title>No-script Example</title> 
 </head> <!--from w w w.ja  v a 2 s .co m-->
 <body> 
  <script type="text/javascript">
        document.write("Hello World!");
    </script> 
  <noscript> 
   <p>Sorry, your browser does not support JavaScript!</p> 
  </noscript>   
 </body>
</html>

Related Tutorials