태그를 사용하여 추가된 세부 정보에 대한 요약을 지정합니다.
예시
다음 코드를 실행하여 HTML5로 요약을 표시할 수 있습니다.
<!DOCTYPE html> <html> <head> <title>HTML Summary Tag</title> </head> <body> <details> <summary>Some More Information</summary> <p>Providing more info about the details here.</p> </details> </body> </html>