keywords
meta要素のname属性にkeywords
を指定すると、content属性にドキュメントに関連するキーワードを指定できる。半角カンマ区切りで、複数のキーワードを指定することも可能だ。
構文
<meta name="keywords" content="キーワード1, キーワード2, キーワード3">
サンプル
HTMLソースコード
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <meta name="keywords" content="キーワード1, キーワード2, キーワード3"> <title>ドキュメントのキーワードを指定するサンプル</title> </head> <body> <h1>見出し[h1]</h1> <article> <h2>見出し[H2]</h2> <p>記事セクション。</p> </article> </body> </html>