How to put Meta Keywords in HTML Page

Meta keywords used to be a method for providing search engines with additional information about the content of your page. However, it’s important to note that most major search engines, including Google, no longer consider meta keywords for ranking purposes due to historical overuse and spamming. Nevertheless, if you still wish to include them for other search engines or for your own reference, here’s how you can add them to an HTML page:

  1. Open your HTML file: Locate the HTML file of the page you want to edit and open it in a text editor or HTML editor.
  2. Locate the <head> section: Meta tags, including meta keywords, should be placed within the <head> section of your HTML document. This section is typically found at the beginning of your HTML file.
  3. Add the Meta Keywords Tag: Within the <head> section, you can add a meta tag for keywords like this:
<!DOCTYPE html>
<html>
<head>
    <title>Your Page Title Here</title>
    <meta name="description" content="A brief description of your page">
    <meta name="keywords" content="keyword1, keyword2, keyword3">
    <!-- other head elements -->
</head>
<body>
    <!-- Page content -->
</body>
</html>
  1. In the content attribute of the meta keywords tag, you can list your keywords, separated by commas. These keywords should be relevant to the content of your page.
  2. Use Keywords Sparingly: If you choose to use meta keywords, it’s important not to overstuff the tag with too many keywords or irrelevant terms, as this can be perceived as spammy by search engines.