EN
HTML - set web page author
0
points
In this article, we would like to show you how to set web page author in HTML.
Quick solution:
<meta name="author" content="John Smith" />
Practical example
In order to set author of the web page, we need to include the meta tag inside the head section. The meta tag content attribute specifies the autor of the web page.
<!doctype html>
<html>
<head>
<meta name="author" content="John Smith" />
</head>
<body>
<!-- Webpage content here ... -->
</body>
</html>