remove the scrollbar from iframe code example
Example 1: iframe no scroll
<iframe src="otherpage.html" scrolling="no" style="overflow:hidden;"></iframe>
Example 2: removing scroll bar of iframe
<iframe frameborder="0" scrolling="no" style="height:380px;width:6000px;border:none;" src='https://yoururl'></iframe>