
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Redirecting...</title>
    <script type="text/javascript">
        setTimeout(function() {
            document.getElementById("redirectLink").click();
        }, 1000); // 1000 milliseconds = 1 second
    </script>
</head>
<body>
    <p>3 - If you are not redirected after 1 second, <a id="redirectLink" href="myapp://example.com">click here</a>.</p>
</body>
</html>