HTML ARTICLE <article> Tag
0 2224
The HTML ARTICLE <article> </article> element identifies a self-contained piece of content that could theoretically be distributed to other websites and platforms as a stand-alone unit.
The <article> </article> element mostly used to contain entire blog posts, news articles, and similar content.
The <article> </article> tag is written as <article></article> with the article content inserted.
between the start and end tags.
Note:
New in HTML5
Program:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> Article Tag </title> </head> <body> <h1> Article Tag </h1> <article> <h2> About Coding Tag </h2> <p>Coding Tag is the E-learning website covering all aspects of technical and nontechnical tutorials</p> </article> <article> <h2> Our Mission </h2> <p> Our main objective is to become an outstanding reference training platform to promote the technical skill.</p> </article> </html>
Share:
Comments
Waiting for your comments