HTML ASIDE <aside> Tag
0 2277
The HTML Aside <aside> element is used to represents content that is related to the primary content of the HTML webpage. The HTML Aside <aside> tag is used to create the 'aside' element.
This element represents content that is related to the surrounding content within an article or web page but could still stand alone in its own right.
Note:
The <aside> content could be placed as a sidebar in an article.
Program:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> Aside Tag </title> </head> <body> <h1> The Aside Tag </h1> <aside> <h2> About Coding Tag </h2> <p> Coding Tag is the E-learning website covering all aspects of technical and nontechnical tutorials </p> </aside> <aside> <h2> Our Mission </h2> <p> Our main objective is to become an outstanding reference training platform to promote the technical skill. </p> </aside> </html>
Share:
Comments
Waiting for your comments