EN
HTML - set web page meta keywords
0
points
In this article, we would like to show you how to set web page meta keywords in HTML.
Quick solution:
<meta name="keywords" content="HTML, CSS, JavaScript, Programming">
Practical example
In order to set met keywords for the web page, we need to include the meta tag inside the head section. The meta tag content attribute specifies the keywords of the web page.
<!doctype html>
<html>
<head>
<meta name="keywords" content="HTML, CSS, JavaScript, Programming">
</head>
<body>
<!-- Webpage content here ... -->
</body>
</html>