TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html> <head> <title>Noscript Example - TutorialKart</title> </head> <body> <h1>Welcome to My Website</h1> <noscript> <p>It seems JavaScript is disabled in your browser. Some features of this website may not work.</p> </noscript> <script> document.write('<p>JavaScript is enabled.</p>'); </script> </body> </html>