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:
xxxxxxxxxx
1
<meta name="keywords" content="HTML, CSS, JavaScript, Programming">
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.
xxxxxxxxxx
1
2
<html>
3
<head>
4
<meta name="keywords" content="HTML, CSS, JavaScript, Programming">
5
</head>
6
<body>
7
<!-- Webpage content here ... -->
8
</body>
9
</html>