By default, an iframe has a border around it.
To remove the border, add the style attribute and use the CSS border property:
Example
<iframe src="/html/computer.htm" style="border:none;" title="Iframe Example"></iframe>
With CSS, you can also change the size, style and color of the iframe's border:
Example
<iframe src="/html/computer.htm" style="border:2px solid red;" title="Iframe Example"></iframe>
Live Demo & Try it yourself!