The NOSCRIPT element defines a container for non script-based rendering.
<noscript> - </noscript>
The content of the NOSCRIPT element is displayed in browsers that do not support JavaScript.
HTML tags can be used for the content of the NOSCRIPT element.
<html>
<head>
<title>TAG index</title>
</head>
<body>
<script type="text/javascript">
document.write('<p>JavaScript can be used.</p>');
</script>
<noscript>
<p>JavaScript cannot be used.</p>
</noscript>
</body>
</html>