<aside> tag shows to the content next to the main content but indirectly related to the surrounding content.
For Example:-
<!DOCTYPE html>
<html>
<head>
<title>Aside Tag</title>
</head>
<body>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</p>
<aside>
<p>Content in aside tag</p>
</aside>
</body>
</html>
Output:-
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.
Content in aside tag
Copyright ©2022 coderraj.com. All Rights Reserved.