<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Table Layout</title>
<style>
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
th, td {
border: 1px solid #ddd;
padding: 15px;
text-align: center;
}
img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
}
.image-container {
width: 100%;
height: 200px; /* Fixed height for all image containers */
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
</style>
</head>
<body>
<h1>Image Table Layout</h1>
<table>
<tr>
<th>Column 1</th>
<th>Column 2</th>
</tr>
<tr>
<td>
<div class="image-container">
<img src="https://ankurdemo.tos-ap-southeast-1.bytepluses.com/Shopify/sneaker2.jpeg" alt="Image 1">
</div>
</td>
<td>
<div class="image-container">
<img src="https://ankurdemo.tos-ap-southeast-1.bytepluses.com/Shopify/sneakers3.jpeg" alt="Image 2">
</div>
</td>
</tr>
<tr>
<td>
<div class="image-container">
<img src="https://ankurdemo.tos-ap-southeast-1.bytepluses.com/Shopify/Fashion_12.png" alt="Image 3">
</div>
</td>
<td>
<div class="image-container">
<img src="https://ankurdemo.tos-ap-southeast-1.bytepluses.com/Shopify/fashion11.png" alt="Image 4">
</div>
</td>
</tr>
<tr>
<td>
<div class="image-container">
<img src="https://ankurdemo.tos-ap-southeast-1.bytepluses.com/Shopify/multiple_persons.png" alt="Image 5">
</div>
</td>
<td>
<div class="image-container">
<img src="https://ankurdemo.tos-ap-southeast-1.bytepluses.com/Shopify/Beauty_Cosmetics.png" alt="Image 6">
</div>
</td>
</tr>
<tr>
<td>
<div class="image-container">
<img src="https://ankurdemo.tos-ap-southeast-1.bytepluses.com/Shopify/Beauty_Cosmetics_11.png" alt="Image 7">
</div>
</td>
<td>
<div class="image-container">
<img src="https://ankurdemo.tos-ap-southeast-1.bytepluses.com/Shopify/Beauty_Cosmetics12.png" alt="Image 8">
</div>
</td>
</tr>
<tr>
<td>
<div class="image-container">
<img src="https://ankurdemo.tos-ap-southeast-1.bytepluses.com/Shopify/Sports.jpeg" alt="Image 9">
</div>
</td>
<td>
<div class="image-container">
<img src="https://ankurdemo.tos-ap-southeast-1.bytepluses.com/Shopify/Sports2.jpeg" alt="Image 10">
</div>
</td>
</tr>
</table>
</body>
</html>