Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

figure要素 figcaption要素

figure要素は、図表や図画を表します。
figcaption要素は、figure要素のキャプションを表します。

使用例

<!DOCTYPE html>
<html lang="ja">
<head>
<title>Hello! HTML5></title>
<meta charset="UTF-8">
</head>
<body>
    <p>
        <figure>
            <img src="Winter.jpg" />
            <figcaption>冬の森</figcaption>
        </figure>
    </p>
</body>

外観