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

HTML
요소를 사용하는 방법

<figcaption> 요소는 <figure에 대한 캡션을 추가하는 데 사용됩니다. 요소. 이미지 캡션을 추가하는 데 자주 사용됩니다.

코드 예:

<figure>
  <img src="path-to-image.jpg" alt="Description of image" />
  <figcaption>Caption for photo</figcaption>
</figure>