Google Chrome
it is a free, open-source web browser.
The <main> tag is used to define the main content area of the HTML documnet. It should not contain any content that is repeated across documents such as sidebars, navigation links, copyright information, site logos, and search forms.
Example of Code
<main>
<h1>Web Browsers</h1>
<p>Google Chrome is the most used browsers today.</p>
<article>
<h1>Google Chrome</h1>
<p>it is a free, open-source web browser.</p>
</article>
</main>
Output
Web Browsers
Google Chrome is the most used browsers today.
Google Chrome
it is a free, open-source web browser.
