I need help with centering and resizing an image on a screen. The image is divided into small images within cells, but I can't seem to get it right.
Despite trying various solutions and spending hours resizing the table and images, the final output always comes out broken.
Original Image Link: https://i.sstatic.net/I8hPr.jpg
Current Result: https://i.sstatic.net/wuxAY.jpg
I have also included the code snippets below and uploaded them along with the images to Google Drive:
Google Drive Link: https://drive.google.com/drive/folders/1rOmjAniDTHqtH1hxvfdRC1YmHRSJ6qmm?usp=sharing
HTML
<html>
<head>
<title>Image</title>
<link rel="stylesheet" href="mystyle.css">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<!-- Save for Web Slices (20200123_170249.jpg) -->
<table id="Table_01" class="center" width="1001" height="564" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<img src="images/20200123_170249_01.png" width="413" height="68" alt=""></td>
<td colspan="2" rowspan="2">
<img src="images/20200123_170249_02.png" width="251" height="141" alt=""></td>
<td rowspan="2">
<img src="images/20200123_170249_03.png" width="169" height="141" alt=""></td>
...
</body>
</html>
CSS
<style>
.center {
margin-left: auto;
margin-right: auto;
}
</style>
Any help would be greatly appreciated!