<iframe style="width:100%; border:0;" scrolling="no" onload="this.style.height=this.contentWindow.document.body.scrollHeight + 'px';" srcdoc=' <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> body { margin:0; font-family: Arial, sans-serif; } .wrap { display:flex; gap:20px; } .item { flex:1; text-align:center; } img { width:100%; height:auto; border-radius:8px; display:block; } p { margin-top:10px; font-size:16px; font-weight:500; } @media (max-width:768px){ .wrap { flex-direction:column; } } </style> </head> <body> <div class="wrap"> <div class="item"> <img src="https://cdn.salla.sa/OKgxO/ms2vWPPvaZjbxacNVMaZGK4fya9GnqYeDr9MLvtz.jpg"> <p>test 1</p> </div> <div class="item"> <img src="https://cdn.salla.sa/OKgxO/ms2vWPPvaZjbxacNVMaZGK4fya9GnqYeDr9MLvtz.jpg"> <p>test 2</p> </div> </div> </body> </html>' ></iframe>