HTMLMeta Tags

Meta tags give information about the page. They go inside <head>. For example, charset tells the text type and viewport makes the site mobile friendly.

<head>
  <meta charset='UTF-8'>
  <meta name='viewport' content='width=device-width, initial-scale=1.0'>
</head>