HTML — HTML Meta Tags
<meta>
tags go inside the <head>
and provide metadata about the page such as charset, author, and SEO descriptions.
<head>
<meta charset=\"UTF-8\" />
<meta name=\"author\" content=\"Your Name\" />
<meta name=\"description\" content=\"Learn HTML easily\" />
</head>