Currently, I have two images displayed in the browser horizontally aligned. My goal is to print them using JavaScript, but when I preview it, the second image appears under the first image as if on a new line. I need these pictures to be printed horizontally aligned. I attempted to adjust the padding-top to align them, but unfortunately, it did not work.
<img id = "telin_logo" class="responsive-img" src="img/telin.jpg" style="width: 133px;height: 77">
<img id = "telin_logo2" class="responsive-img" src="img/telin.jpg" style="width: 133px;height: 77px;">
When I mentioned 'print,' I meant printing using a printer. I used @media print to adjust the layout. Apologies for omitting this information.