How to Update a Webpage Continuously
- 1). Open the web page you wish to automatically refresh in your preferred text editor.
- 2). Insert the following code in the head section of the web page.
<meta http-equiv="refresh" content="60">
Substitute the number of seconds between automatic refreshes you desire for the value of 60. - 3). Save and publish the web page. The site will now refresh itself at an interval of the number of seconds you specified.
Source...