<aside> Tag in HTML 5

In this page i am going to explain about <aside> Tag in HTML 5
  • 2329

Definition

The <aside> tag use to defined some content aside from content it is place in. <aside> tag does not work in internet explorer 8 and earlier version. 

Browser that supports <a> tag

internet explorer 9, mozilla firefox, Google chrome, opera and safari browsers

Example
 

<html>
  <p>About country</p>
    <aside>
       <h3>India</h3>
          <p>India is the seventh largest country in the world</p>
     </aside>
</html>

 

Output

 aside.jpg



Read more about HTML 5 click here

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.