load page after some seconds in html
By using HTTP-EQUIV “REFRESH” tag you are able to define after how long a page has to be refreshed or after a certain period of seconds you want your visitor to be redirected to another webpage. Search engines usually don’t like it when you use refresh pages.
Syntax
<meta http-equiv="refresh" content="value">
Example
<Html> <head> <meta http-equiv="refresh" content="3;url=http://www.loopandbreak.com"> </head> <body> Any sample text content = 3 (stands for 3 seconds) </body> </Html>