MAIN
Run
<!DOCTYPE html>
<html>
<body>

<h1>The main tag Example</h1>

<main>
  <h2>Web Browsers</h2>
  <p>Chrome, Firefox, and Edge are the most used browsers today.</p>

  <article>
    <h3>HTML</h3>
    <p>Used to create static Web pages .It stands for Hypertext Markup Language</p>
  </article>

  <article>
    <h3>CSS</h3>
    <p>Used to style HTML pages</p>
  </article>

</main>

<p><strong>Note:</strong> The main tag is not supported in Internet Explorer 11 and earlier versions.</p>

</body>
</html>