요소에 캡션을 추가하려면 태그를 사용하세요. 다음 코드를 실행하여 HTML5 −의 요소에 대한 캡션을 포함할 수 있습니다. <!DOCTYPE html> <html> <head> <title>HTML figcaption Tag</title> </head> <body> <figure><img src = "https://www.tutorialspoint.com/videotutorials/images/tutorial_library_home.jpg"/> <figcaption>Tutorials Point Library of Tutorials</figcaption> </figure> </body> </html>