<noscript> HTML Tag
In this article we will discuss about how to use noscript Tag in HTML.
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:

Ask Your Question