<noscript> HTML Tag

In this article we will discuss about how to use noscript Tag in HTML.
  • 1875

The noscript tag is used to disable the scripting language and by using it the browser does not support the scripting language.

HTML Code:

<html>

<head>

    <title>This is my first web page</title>

</head>

<body>

    <script type="text/javascript">

        document.write("My Birth Place!")

    </script>

    <noscript>

        Sorry, your browser does not support JavaScript!</noscript>

    <p>

        A browser without support for JavaScript will show the text in the noscript element.</p>

</body>

</html>

 

Output:

 noscript.jpg

Ask Your Question 
 
Got a programming related question? You may want to post your question here
 
Programming Answers here
© 2020 DotNetHeaven. All rights reserved.