Friday, December 11, 2015

HTML5 Article Tag

The  <article>  tag indicates autonomous, independent substance. An article ought to bode well on its own and it ought to be conce... thumbnail 1 summary
The <article> tag indicates autonomous, independent substance. An article ought to bode well on its own and it ought to be conceivable to disperse it autonomously from whatever remains of the site.

<article> .... </article>

Here is the Syntax for <ARTICLE> Tag

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
 
<html>
     
    <head>
         <title>Title Name will go here</title>
    </head>
     
    <body>
 
        <article>
            <h1>Computer</h1>
        <p>An electronic device which is capable of receiving information (data) in a particular form and of performing a sequence of operations in accordance with a predetermined but variable set of procedural instructions (program) to produce a result in the form of 
information or signals.</p>
    </article>
 
    </body>
     
</html>

No comments

Post a Comment