tag< section > :
Definition and Usage
The <section> tag defines sections in a document, such as chapters, headers, footers, or any other sections of the document.
| Example | |
| code |
<section> <h1>HTML 4</h1> <p>The old version of web desinging language .</p> </section> <section> <h1>HTML 5</h1> <p>The New & more intersting version of web desinging language .</p> </section> |
| output |
HTML 4The old version of web desinging language . HTML 5The New & more intersting version of web desinging language . |
