<p>인류가 살고 있는 지구는 아름답습니다.</p>
<figure>
    <img src="earth.jpg" alt="우주에서 둥글고 푸른빛으로 빛나는 지구">
</figure>
브라우저에서 실제 표시된 모습
<p>인류가 살고 있는 지구는 아름답습니다.</p>
<figure>
    <img src="earth.jpg" alt="우주에서 둥글고 푸른빛으로 빛나는 지구">
    <figcaption>우주에서 바라본 지구</figcaption>
</figure>
figcaption {
    background-color: #d1d1d1;
    text-align: center;
    padding: 4px;
}
브라우저에서 실제 표시된 모습
<p>인류가 살고 있는 지구는 아름답습니다.</p>
<figure></figure>
figure {
    background-image: url("earth.jpg");
}
브라우저에서 실제 표시된 모습
<p>인류가 살고 있는 지구는 아름답습니다.</p>
<figure>
    <video src="earth.mp4" muted autoplay playsinline loop></video>
</figure>
<p>typeof 연산자는 피연산자의 데이터 타입을 문자열로 반환하는 연산자입니다.</p>
<figure>
    <figcaption>typeof 연산자의 기본 예제</figcaption>
    <pre>
        <code>
            let a;
            console.log(typeof a); // 출력: "undefined"
        </code>
    </pre>
</figure>

caniuse.com에서 더 자세한 정보를 확인해 보세요.