HTML/CSSBeginner#html#meta#seo

What are the important meta tags in an HTML document?

charset defines character encoding, viewport controls responsive scaling on mobile, description and keywords help SEO, and og: tags control social media link previews. They live in the <head>.

Example
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Learn web development">
<meta property="og:title" content="My Page">

Related Questions

1
HTML/CSSBeginner#html#meta

What does the viewport meta tag do and why is it needed?

Open
2
HTML/CSSIntermediate#html#performance

What is the difference between <script>, <script async>, and <script defer>?

Open
3
HTML/CSSBeginner#html#forms

What HTML5 form input types do you know?

Open