Html Code Redirect

 How to Redirect a Web Page in HTML 

As soon as the page loads, the function is fired and the page is redirected

 <!DOCTYPE html>
<html>
    <head>
        <title>2KADAM </title>
        <script>
            function init()
            {
               window.location.href = "https://www.2kadam.in";
            }
        </script>
    </head>

    <body onload="init()">
    </body>
</html> 

Advertisement
Ad