HTML Meta Description
There should be a description 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.
HTML page descriptions help a website in its SEO optimization, so it's always good to have a proper description for each HTML document.
<meta name="description" content="Random codez application description">
Example
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description" content="Random codez application description">
</head>
<body>
<h1>HTML Meta Description</h1>
</body>
</html>
Overall
The description helps HTML document and make it a habit to include it.