HTML Meta Revised

HTML Meta tag can be used to provide the last revised date of an HTML document, which can be used by browsers while refreshing a web page.

It can be defined as below, where we can provide any text along with data against content.

<meta name="revised" content="Random Codez, 11/10/2021">

Example

<!DOCTYPE html>
<html lang="en">
<head>
    <meta name="revised" content="Random Codez, 11/10/2021">
</head>
<body>
    <h1>HTML Meta Revised</h1>
</body>
</html>

Overall

HTML meta tag can be used to define the last revised date of an HTML document.