Code
<!DOCTYPE html>
<html>
    <head>
        <title>Wikitechy noscript tag</title>
    </head>
    <body>
        <script>
            document.write("Welcome to Wikitechy.");
        
</script>
        <noscript>
            Sorry,The browser does not support JavaScript!
        </noscript>
        <p>
            noscript tag is used to defined an alternate text for users if the browser does not support script.
        </p>
    </body>
</html>



Result