HTML <noscript> Tag

<!DOCTYPE HTML>
<html>
<head>
<title>HTML 'noscript' Example</title>
</head>
<body>
<script>
<!-- ...script goes here... -->
</script>
<noscript>
<p>This content is only displayed if 
	scripting is disabled...</p>
</noscript>
</body>
</html>
HTML 'noscript' Example

The above example demonstrates usage of the <noscript> element.

The <noscript> element represents fallback content for browsers with scripting disabled (or those browsers that don't support scripting).

The <noscript> element is typically used with the <script> element to provide alternative content that users should see if scripting is disabled.