본문 바로가기
카테고리 없음

Detail 태그

by jmaster 2021. 12. 18.

Detail 태그

  • details 태그 : 상세 설정 제공 - 하위태그 : summary
  • summary 태그 : 요약문 작성
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>HTML</title>
</head>
<body>
	<h1>details 태그</h1>
	<hr>
	<details>
		<summary>Hello</summary>
		<p>안녕하세요.</p>
	</details>
	
	<details>
		<summary>Good Bye</summary>
		<p>안녕히 가세요.</p>
	</details>
</body>
</html>

댓글