I'm struggling to display 4 images on a single page in the desired sequence, similar to the example below: https://i.sstatic.net/3V1Ru.png
Currently, my code only aligns the images to the left-hand side. Here is a snippet of my code:
<style>
img {
max-width: 100%;
max-height: 100%;
}
<div class="4_page" style='height: 50%; width: 25%;text-align: center; object-fit: contain'>
<img src="hebahan New material.png">
</div>
<div class="4_page" style='height: 50%; width: 25%;text-align: center; object-fit: contain'>
<img src="logo_test.png">
</div>
<div class="4_page" style='height: 50%; width: 25%;text-align: center; object-fit: contain'>
<img src="logo_test.png">
</div>
<div class="4_page" style='height: 50%; width: 25%;text-align: center; object-fit: contain'>
<img src="logo_test.png">
</div>
</style>
I would appreciate any guidance on how to resolve this issue. Thank you.