Example Of An Paragraph In HTML

Making A Paragraphs In HTML


Steps:
1. open notepad
2.type the following codes:
<!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 the browser window. 
</p>

</body>
</html>
3.save it 
4 open it and it will appear 




Comments