What does it do? You put it around text, and it doesn’t do anything.
<article> </article> has the same effect as <p> </p>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
<article>is just a block-level element introduced in HTML5 for semantics.Think of it just like the
<blockquote>element. You could use<div class="blockquote">, but why?<blockquote>is already there and does the job. Instead of having<div>s nested six deep, you can use elements that have a little more meaning.Take a look at what the HTML5 reference says: