Usage
The noscript tag is used to display text to the user if the browser they’re using does not allow the script to run.
Code:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/file/stylesheet.css">
<script type="text/javascript">
<!--
document.write("")
-->
</script>
<noscript>Your browser does not support Javascript</noscript>
</head>
<body>
Content of the page goes here.
</body>
</html>