অনুশীলন ক্লাস ০৩ঃ HTML Paragraph.

এই ক্লাসে আমরা প্যারাগ্রাফের বিভিন্ন ফরম্যাট নিয়ে আলোচনা করবো।
Example: 01
<!DOCTYPE html> <html> <head> <title>HTML Paragraph</title> </head> <body> <p>My first paragraph.</p> </body> </html>
ফলাফলঃ
Example: 02
<!DOCTYPE html> <html> <head> <title>HTML Paragraph</title> </head> <body> <p>This is a paragraph.</p> <p>This is a paragraph.</p> <p>This is a paragraph.</p> </body> </html>
ফলাফলঃ
HTML-এ অতিরিক্ত লাইন ও স্পেইস রিমুভ হয়ে যায়।
Example: 03
<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>
ফলাফলঃ
Example: 04
<p>This is<br>a paragraph<br>with line breaks.</p>
ফলাফলঃ
Example: 05
<p> My Bonnie lies over the ocean. My Bonnie lies over the sea. My Bonnie lies over the ocean. Oh, bring back my Bonnie to me. </p> <pre> My Bonnie lies over the ocean. My Bonnie lies over the sea. My Bonnie lies over the ocean. Oh, bring back my Bonnie to me. </pre>
ফলাফলঃ
এই কনটেন্ট টি আপনার ভালো লাগলে আপনার বন্ধুদের সাথে শেয়ার করুন। ধন্যবাদ সবাইকে।