Tutorials

KodeKite Tools

HTML
Flexbox
SVG
Canvas
HTML Tutorial

More


HTML Aside Element
Aside Element

Aside is a HTML5 semantic element used to define some content aside from other content. It is known as side content element because its content is placed in sidebar. It is related to surounding content not in middle content.

Syntax

<aside>content</aside>


You can define one or more than one aside in a document.


Example


Practice Task

Open notepad or any other text editor, follow the following points.


  • Use <aside> element to insert side content in a page
  • Side content should be list of some items

save file with name task.html or task.htm and then open it using any browser and see results.


Solution