Learn how to define description of a web page ising HTML.
The description is used (like the title tag) in search engines result page so the engine can show a description of the page to the user (see picture below). It's also used by social networks (facebook...) to display it in link preview.
π« Page description is not used by search engines as a ranking factor.
1
Add meta: description
Just add the description meta in the head section of HTML structure:
<meta name="description" content="Here i can describe my page...">
Example in full HTML structure:
<html>
<head> <meta name="description" content="Here i can describe my page..."> </head>
<body> Here is the page's content... </body>
</html>
β’ It's recommended to keep the Description meta below 160 characters. β’ Have an unique description for each page (as with title tag)