긴 인용문을 나타내려면
태그를 사용하십시오. 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>