ASIDES
<aside>
The <aside> element has two purposes, depending on
whether it is inside an <article> element or not. When the <aside> element is used inside an <article> element, it should contain information
that is related to the article but not essential to its overall meaning. For
example, a pull quote or glossary might be considered as an aside to the
article it relates to. When the <aside> element is used outside of an <article> element, it acts as a container for content
that is related to the entire page. For example, it might contain links to
other sections of the site, a list of recent posts, a search box, or recent
tweets by the author
Code example is as following!!!
<aside>
<section
class="popular-recipes">
<h2>Popular Recipes</h2>
<a
href="">Yakitori (grilled chicken)</a>
<a
href="">Tsukune (minced chicken patties)</a>
<a
href="">Okonomiyaki (savory pancakes)</a>
<a
href="">Mizutaki (chicken stew)</a>
</section>
<section
class="contact-details">
<h2>Contact</h2>
<p>Yoko's Kitchen<br />
27 Redchurch Street<br />
Shoreditch<br />
London E2 7DP</p>
</section>
</aside>