Example 1
Button to open new window with estimate form
<button onClick="window.open('https://portal.repliers.com/estimate/embedded', '_blank', 'width=640,height=234,left='+(window.screen.width/2-640/2)+',top='+(window.screen.height/2-234/2)+',resizable=yes,scrollbars=no,toolbar=no,addressbar=no,location=no,status=no')">Open Estimate Form</button>
Example 2
<iframe> width can be any reasonable size for modern devices, from mobile to desktop browsers. The minimal recommended height is 234px (desktop) / 326px (mobile)
<iframe
src="https://portal.repliers.com/estimate/embedded"
frameBorder="0"
scrolling="no"
width="750"
height="234"></iframe>
750x234
640x234
375x326
Example 3
<iframe> with more than 450px (desktop) / 542px (mobile) height will be able to show map for address confirmation
<iframe
src="https://portal.repliers.com/estimate/embedded"
frameBorder="0"
scrolling="no"
width="750"
height="450"></iframe>