এইচটিএমএল <পি> ট্যাগ একটি অনুচ্ছেদ সংজ্ঞায়িত করে ।
<p>This is an example of paragraph.</p>
<p>This is another example of paragraph.</p>
অতিরিক্ত স্পেস এবং অতিরিক্ত লাইন <p> ট্যাগ গণনা করে না | যখন ব্রাউজার এ পেজ প্রদর্শিত হয় যেকোন অতিরিক্ত স্পেস এবং অতিরিক্ত লাইন মুছে ফেলা হবে ।
<p>
This example paragraph
contains a lot of
spaces
,
but the browser
ignores it.Prints it like a normal sentence like this.
</p>
শেষ ট্যাগ/Ending Tag ভুলবেন না
শেষ ট্যাগটি ভুলে গেলেও বেশিরভাগ ব্রাউজার সঠিকভাবে এইচটিএমএল প্রদর্শন করবে , তবে এই ভুল না করাই ভাল :
<p>This is an example of paragraph.
<p>This is another example of paragraph.
Example of BOLD tag : <b> </b> বা <strong> </strong>
<b> Bold Text</b>
<strong> Bold Text </strong> <!-- HTML5 -->
Example of Italic tag : <i> </i> বা <em> </em>
<i> Italic Text </i>
<em>Italic text</em> <!-- HTML5 -->
Example of UnderLine tag : <u> </u>
<u> Underline text </u>