Example of meta tag usage

All meta information goes inside the head section.

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <meta name="description" content="Free Web tutorials">
  <meta name="keywords" content="HTML, CSS, JavaScript">
  <meta name="author" content="John Doe">
  <title>Example of meta tag usage</title>
  <link href="mystyle.css" rel="stylesheet" type="text/css">
</head>