The correct value to apply to the APPLE APP STORE icon is style="margin:6%;width:88%" .
The CSS rule on img should be:
img { max-width: 100%; height: auto; }
Then, in both <div> surrounding <img> each icon, if the width values โโare the same (300px in the example below), the APPLE APP STORE and GOOGLE PLAY STORE icons will have the same aspect ratio.
<div class=""> <div class="" style="width:300px"> <img src="/Download_on_the_App_Store_Badge_FR_135x40.svg" style="margin:6%;width:88%"></img> </div> <div class="" style="width:300px"> <img src="/google-play-badge.png" >/img> </div> </div>
source share