Search code examples
htmlmeta-tags

What is the correct syntax for meta description in html


Is there a difference between <meta description="blahblahblah"> and <meta name="description" content="blahblahblah">?

Are they both valid? Is one obsolete (or deprecated)?


Solution

  • The meta element does not accept the attribute "description". You should always use the name="" & content="" attributes in this case (and many other meta tags) to keep it valid.

    Source: developer.mozilla.org