English
When you make a web page, do you sometimes want your web page to automatically refresh continuously, or automatically jump to another page that you set after a period of time? In fact, it is very simple to achieve this effect, and this effect cannot even be called a special effect. You just need to add the following code to your web page. 1. The page automatically refreshes: Add the following code to the <head> area <meta http-equiv="refresh" content="20">, where 20 means refreshing the page every 20 seconds. 2. The page automatically jumps: Add the following code to the <head> area <meta http-equiv="refresh" content="20;url=http://www.downcodes.com">, where 20 means jumping to http:// after 20 seconds. www.downcodes.com page.