In this tutorial we will learn how to auto refresh web page using HTML meta tags.
Here we will use :
<meta http-equiv="refresh" content="15" />
In this content="15" attribute is use to set the interval in second, so here the time interval to refresh page is 15 second.
Lets see a example -
How to auto refresh web page using HTML meta tags.
<!DOCTYPE html>
<html>
<head>
<title>Auto Refresh Web Page Using HTML Meta Tags</title>
<meta http-equiv="refresh" content="15" />
</head>
<body>
<h1>Page refresh after 15 second </h1>
</body>
</html>