HTML Meta Author

There should be an author for every HTML document, which can be easily included using <meta> tags as shown below.

The tag <meta> should go into the <head> tag as mentioned in the example.

<meta name="author" content="Arun Kumar Choppara">

Example

<!DOCTYPE html>
<html lang="en">
<head>
    <meta name="author" content="Arun Kumar">
</head>
<body>
    <h1>HTML Meta Author</h1>
</body>
</html>

Overall

It's is important to mention an author's name on every HTML document, so make it a habit to include it.