Is there any JSF tag that we can use it in our page to load an external HTML source and put it into the resulted page :
something like this :
As you can make use of standard HTML tags in facelets too, just an iframe will do the work:
<div id="stackOverFlowPageId">
<iframe src="http://www.w3schools.com"
height="100%" width="100%" />
</div>
Remember some sites do not enable to be included in frames for security reasons.
See also: