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:
xxxxxxxxxx
1
<meta name="description" content="description of the web page" />
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.
xxxxxxxxxx
1
2
<html>
3
<head>
4
<meta name="description" content="description of the web page" />
5
</head>
6
<body>
7
<!-- Webpage content here ... -->
8
</body>
9
</html>