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

HTML 태그


HTML의 q 태그는 짧은 인용문을 지정하는 데 사용됩니다. 인용 부호는 q 태그 내부에 설정된 텍스트 주위에 삽입됩니다. 즉, 인용입니다.

다음은 속성입니다 -

  • 인용 :인용문의 소스 url을 설정합니다.

이제 태그 −

를 구현하는 예를 살펴보겠습니다.

예시

<!DOCTYPE html>
<html>
<body>
<h2>Thoughts</h2>
   <p>Warren Buffett quoted,
   <q>It's better to hang out with people better than you. Pick out associates whose behavior is
   better than yours and you'll drift in that direction. </q></p>
   <p>Bill Gates quoted,
   <q>Your most unhappy customers are your greatest source of learning.</q></p>
</body>
</html>

출력

HTML  q  태그

위의 예에서 HTML의 태그를 사용하여 따옴표를 설정했습니다 −

<p>Warren Buffett quoted,
<q>It's better to hang out with people better than you. Pick out associates whose behavior is better than yours and you'll drift in that direction. </q>

위에서 볼 수 있듯이 태그를 사용하여 따옴표를 설정했습니다. 출력은 태그를 표시하며 자동으로 따옴표 주위에 짧은 따옴표를 추가합니다.