iframe html code example
Example 1: iframe
<!DOCTYPE html>
<html>
<body>
<iframe src="https://comercioiturama.blogspot.com/" width="800" height="600"></iframe>
</body>
</html>
Example 2: iframe in html
<iframe src="yourURL" height="200" width="300"></iframe>
Example 3: put html in iframe
<iframe srcdoc="<html><body>Hello, <b>world</b>.</body></html>"></iframe>