HTML article tag

HTML <article> tag typically provides the independent section and self-complete content for the web page. It should have its own identity and can detach itself from any dependency based on the website. Blog posts, Forum posts, News Story and comments are the sources for which <article> is recommended.





HTML 5

HTML5 is the latest set of markup language and rules for webpages structure, layout and presenting content

Note: Older Version of browsers might not support <article> tag.

Default CSS for <article> tag are:


article {
display: block;
}

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *