Pages

Tuesday, 4 August 2015

First Paragraph in HTML

Welcome Back again..

We are now going to write our first paragraph in html..

The tag used for defining a paragraph is <p>

Let's start our Code

<!DOCTYPE html>
<html>
<head>
<title>writing Paragraph</title>
</head>

<body>

<p>This is my first Paragraph</p>

</body>
</html>

Output: 

This is my first Paragraph


By default small size is assigned to paragraph, but we can define our own size by using stylesheet which we will learn it further..

To be Continued....

No comments:

Post a Comment