This page shows three thumbnails side by side. The first is a normal thumbnail, the second has rounded corners, and the third is smaller in width.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap Image Thumbnails</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<main class="container py-4">
<h1>Image Thumbnails Example</h1>
<p>Below are three image thumbnails with different styles.</p>
<div class="d-flex gap-3">
<img src="https://via.placeholder.com/150" class="img-thumbnail" alt="Placeholder 150">
<img src="https://via.placeholder.com/150" class="img-thumbnail rounded" alt="Rounded placeholder">
<img src="https://via.placeholder.com/150" class="img-thumbnail" style="width: 100px;" alt="Smaller placeholder">
</div>
</main>
</body>
</html>