एच टी एम एल पेराग्राफ
<p> tag से शुरु होने वाले HTML paragraphs कहलाते है।
<p>This is a
paragraph.</p>
<p>This is another paragraph.</p> |
|
<!DOCTYPE html>
<html>
<body>
<p>
This paragraph contains a lot of lines
in the source code,but the browser
ignores it.
</p>
<p>
This paragraph contains a lot of spaces in the source code,but the browser ignores it.
</p>
<p>
The number of lines in a
paragraph depends on the size of your browser window. If you resize the
browser window, the number of lines in this paragraph will change.
</p>
</body>
</html>
|
|
<!DOCTYPE html>
<html>
<body>
<p>This is a
paragraph.</p>
<br> <p>This is a new line of paragraph.</p> <br><br><br> <p> This is a new line of paragraph.</p>
</body>
</html>
|
|
0 comments:
Post a Comment