<NOSCRIPT> ELEMENT
The content contained in a <noscript> element will be displayed if:
- The browser doesn't support scripting. Or
- The browser's scripting support is turned off.
<!DOCTYPE html>
<html>
<head>
<title>Example HTML Page</title>
<script type="text/javascript" defer="defer" src="example1.js"></script>
</head>
<body>
<noscript>
<p>This page requires a JavaScript-enabled browser.</p>
</noscript>
</body>
</html>