ASIDE TAG
- ASIDE tag is new tag in HTML5.
- It represents a part of a document whose content is only indirectly related to the document's main content..]
- Aside tag used for pull quotes,comments,editorial sidebars etc.
NOTE: Behaviour of div and aside are same but meaning is different.
- Div is used for create a section or a division.
- Aside is also used for create a section or division but related to content of the main page.
SYNTAX
<!DOCTYPE html> <html> <head> <title>HTML Aside Tag</title> </head> <body> <aside> <h2>HTML</h2> <p>HyperText markup Language</p> </aside> </body> </html>
OUTPUT
HTML
Hypertext markup Language
--------------------------------------------------------------------------------------------------------------------------------------------
Comments
Post a Comment