- name属性
- メタデータの名前を表します。
- content属性
- メタデータの値を表します。
使用例
<!DOCTYPE html> <html lang="ja"> <head> <title>Hello! HTML5</title> <meta name="description" content="Webページの説明です。" /> </head> <body> <h1>大見出し</h1> <p>こんにちは!HTML5</p> </body> </html>
<!DOCTYPE html> <html lang="ja"> <head> <title>Hello! HTML5</title> <meta name="description" content="Webページの説明です。" /> </head> <body> <h1>大見出し</h1> <p>こんにちは!HTML5</p> </body> </html>