This page shows the Bootstrap logo with a caption below it using the Figure component. The image is responsive and has rounded corners.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap Figure Example</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<main class="container mt-5">
<h1>Figure Component Demo</h1>
<figure class="figure">
<img src="https://getbootstrap.com/docs/5.3/assets/brand/bootstrap-logo.svg" class="figure-img img-fluid rounded" alt="Bootstrap Logo">
<figcaption class="figure-caption">This is the Bootstrap logo.</figcaption>
</figure>
</main>
</body>
</html>