Inline frame can be inserted anywhere inside a web page. To use inline frame, use the <iframe>...</iframe> element.
snippet
<html>
<head></head>
This is the text before the iframe
<iframe src="page1.html" align="left">iframe1</iframe>
<iframe src="page2.html" align="right" width="350" height="200">iframe2</iframe>
<html>