Sử dụng thẻ
để chỉ trích dẫn dài. Thẻ HTMLđược sử dụng để bao gồm các trích dẫn dài (tức là các trích dẫn kéo dài nhiều dòng). Nó chỉ nên chứa các phần tử cấp khối bên trong nó chứ không chỉ là văn bản thuần túy.Sau đây là thuộc tính -
Thuộc tính
Giá trị
Mô tả
trích dẫn
URL
URL của trích dẫn, nếu nó được lấy từ web.
Ví dụ
Bạn có thể thử chạy mã sau để triển khai thẻ
trong tài liệu 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>