This META element sets the automatic refreshing of the page.
The META element is placed inside the HEAD element.
<meta http-equiv="Refresh" content="60">
| Attribute | Value | Explanation |
|---|---|---|
| http-equiv=" " | Refresh | - |
| content=" " | seconds | the number of seconds that refreshes |
<html>
<head>
<meta http-equiv="Refresh" content="60">
<title>TAG index</title>
</head>
<body>
</body>
</html>