<html lang="ko">
<head>
<meta charset="UTF-8">
<title>HTML5 Semantic Elements</title>
</head>
<body>
<h1>figure 요소와 figcaption 요소</h1>
<figure>
<img src="/examples/images/img_flower.png" alt="flowers" width="350" height="263">
<figcaption>[ 그림 1. 위의 그림은 이쁜 꽃이네요! ]</figcaption>
</figure>
</body>
</html>