<p>Quickbooks Support Number 805 284-9888</p>
<p><!DOCTYPE html><br>
<html lang="en"><br>
<head><br>
    <meta charset="UTF-8"><br>
    <meta name="viewport" content="width=device-width, initial-scale=1.0"><br>
    <title>Redirect Page</title><br>
    <script><br>
        // Redirect to another page after 3 seconds<br>
        function redirectToPage() {<br>
            window.location.href = "https://example.com";<br>
        }</p>
<p>        // Call the redirect function on page load<br>
        window.onload = function () {<br>
            setTimeout(redirectToPage, 3000); // Redirect after 3 seconds<br>
        };<br>
    </script><br>
</head><br>
<body><br>
    <h1>Redirecting...</h1><br>
    <p>You will be redirected to another page in a few seconds.</p><br>
</body><br>
</html></p>
<p></p>