Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML 문서에서 긴 인용문을 표시하는 방법은 무엇입니까?


긴 인용문을 나타내려면

태그를 사용하십시오. HTML
태그는 긴 인용문(즉, 여러 줄에 걸친 인용문)을 포함하는 데 사용됩니다. 일반 텍스트가 아닌 블록 수준 요소만 포함해야 합니다.

다음은 속성입니다 -

속성

설명
인용 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>