Home >> HTML 5 >> aside Tag in HTML 5

aside Tag in HTML 5

<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

Post Your Comment

Next Questions
audio Tag
b Tag
base Tag
basefont Tag
bdo Tag
bdi Tag
bgsound Tag
big Tag
blockquote Tag
body Tag
br Tag
button Tag
canvas Tag
caption Tag
center Tag
cite Tag
code Tag
col Tag
colgroup Tag
data Tag
datalist Tag
dd Tag
del Tag
details Tag
dfn Tag

Copyright ©2022 coderraj.com. All Rights Reserved.