<noscript> तत्व का उपयोग <head> और <body> दोनों में किया जा सकता है। जब <head> के अंदर उपयोग किया जाता है, तो <noscript> तत्व में केवल <link>, <style>, और <meta> तत्व हो सकते हैं।
<!DOCTYPE html>
<html>
<head>
<title>Document</title>
</head>
<body>
<script>
document.write("Hello")
</script>
<noscript>Sorry, your browser does not support JavaScript!</noscript>
</body>
</html>