HTML CSS examples for HTML:Script
Noscript tag Example
<!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>