HTML5 common tags
by AlexMM
HTML
<!-- Strong importance text -->
<strong>very imporant text</strong>
<!-- Header element -->
<header>Header content</header>
<!-- Main content of the body tag (unique) -->
<main>Main content</main>
<!-- Footer element of a sectioning content -->
<footer>Footer content</footer>
<!-- Article element (common to have a heading as 1st child) -->
<article>Article content</article>
<!-- Section element (common to have a heading as 1st child) -->
<section>Section content</section>
<!-- Navigation element (with links to other sections/sites) -->
<nav>Navigation content</nav>