लंबे उद्धरणों को इंगित करने के लिए
टैग का उपयोग करें। HTMLटैग का उपयोग लंबे उद्धरणों को शामिल करने के लिए किया जाता है (अर्थात कई पंक्तियों में फैले उद्धरण)। इसमें केवल ब्लॉक-स्तरीय तत्व शामिल होने चाहिए, न कि केवल सादा पाठ।निम्नलिखित विशेषता है -
थड> विशेषता
वें> <वें शैली ="चौड़ाई:17.103%; पाठ-संरेखण:केंद्र;">मान
वें> <वें शैली ="चौड़ाई:63.3508%; पाठ-संरेखण:केंद्र;">विवरण
वें>उद्धरण
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>