figcaption 태그
figcaption태그는 웹 문서에서 이미지, 삽화, 동영상등의 설명을 추가할 때 사용합니다.
이 태그는 figure태그 내에서 사용할 수 있습니다. 그러므로 이미지나 영상, 삽화를 figure태그로 감싼 후 그 안에서 figcaption 태그를 사용합니다.
figcaption태그 사용법
<figure> <img src="/myservice/images/me/happyCat.png" /> <figcaption>이미지 설명</figcaption> </figure>
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>figcaption 태그 학습</title> </head> <body> <figure> <img src="/myservice/images/me/happyCat.png" /> <figcaption>은노이가 만들어 준 캐릭터</figcaption> </figure> </body> </html>
결과