দীর্ঘ উদ্ধৃতি নির্দেশ করতে
ট্যাগ ব্যবহার করুন। HTMLট্যাগটি দীর্ঘ উদ্ধৃতি অন্তর্ভুক্ত করতে ব্যবহৃত হয় (অর্থাৎ একাধিক লাইন বিস্তৃত উদ্ধৃতি)। এটির মধ্যে কেবলমাত্র ব্লক-স্তরের উপাদান থাকা উচিত এবং কেবল সাধারণ পাঠ্য নয়৷নিম্নলিখিত বৈশিষ্ট্য −
অ্যাট্রিবিউট
মান
বিবরণ
উদ্ধৃত করুন
URL
উদ্ধৃতির URL, যদি এটি ওয়েব থেকে নেওয়া হয়।
উদাহরণ
আপনি একটি HTML নথিতে
ট্যাগ প্রয়োগ করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন −<!DOCTYPE html> <html> <head> <title>HTML blockquote Tag</title> </head> <body> <blockquote>Browsers generally render blockquote text as indented text. If your quoted text needs to display within a non-quoted paragraph, you should use the HTML q tag. Most browsers surround q text with quotation marks.</blockquote> <q>Browsers generally render blockquote text as indented text. If your quoted text needs to display within a non-quoted paragraph, you should use the HTML q tag. Most browsers surround q text with quotation marks.</q> </body> </html>