Pages

Ads 468x60px

Wednesday, March 21, 2012

Creating a New Paragraph in HTML

In HTML, there are tags for writing paragraph. Yes, it's container tag and it is <p></p>.

<html>
<head>
            <title>Latest IT Books</title>
</head>
            <body>
                     <font size="5" face="arial">
                             <p>This is the first paragraph.</p>
                             <p>This is the second paragraph.</p>
                             <p>This is the third paragraph.</p>
                     </font>
            </body>
</html>

No comments:

Post a Comment