description
meta要素のname属性にdescription
を指定すると、content属性にドキュメントの概要を指定できる。
構文
<meta name="description" content="ドキュメントの概要">
サンプル
HTMLソースコード
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <meta name="description" content="ドキュメントの概要です。"> <title>ドキュメントの概要を指定するサンプル</title> </head> <body> <h1>見出し[h1]</h1> <article> <h2>見出し[H2]</h2> <p>記事セクション。</p> </article> </body> </html>