HTML Meta Keywords

Each HTML document must contain keywords that explain the content of a web page on a high level, which helps a website in its Search Engine Optimization.

Keywords can be added to a web page using the tag <meta>, which must go into the <head> tag as mentioned in the example.

<meta name="keywords" content="Random Codez, HTML, tutorials, articles">

Example

<!DOCTYPE html>
<html lang="en">
<head>
    <meta name="keywords" content="Random Codez, HTML, tutorials, articles">
</head>
<body>
    <h1>HTML Meta Keywords</h1>
</body>
</html>

Overall

HTML meta keywords improve a website's SEO optimization, so make it a habit of adding appropriate keywords.