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