How to Redirect One Page to Another with HTML To add a redirect to your HTML, paste the following code into the
section of the page you want to redirect (and replace the URL value): In this code: http-equiv="refresh" tells the browser to redirect the page. content="3; tells the browser how many seconds to wait before refreshing the page. In this example, it's three seconds. To create an instant redirect, replace the "3" with a "0". URL="URL=https://www.your url.com/newpage" tells the browser which URL to send users to. Just be sure to be careful when choosing between an instant redirect and a delayed redirect. Google interprets instant redirects as permanent (meaning you don't plan to use the redirected page again) and delayed redirects as temporary.