How does head provide metadata

I’m confused about how the "head"element provides metadata. Do other elements like “title” and body?

there are tags (like meta) which can used to provide metadata

So in Codecademy how would I use that? I’ll probably get to it in a future lesson or learn it sometime soon,but I do appreciate any explanation I can get. Also do all website coding languages have a feature that uses this?

they are html elements, just like title and head? so you can just add them inside your head:

  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
1 Like

Thanks for the reference and the help :slight_smile: