Create an inline frame(iframe) in HTML and CSS

Description

The following code shows how to create an inline frame(iframe).

Example


<!--   w  w  w . ja v a  2s.  c  o m-->
<!DOCTYPE HTML>
<html>
<body>
<p>paragraph</p>
<iframe src="http://java2s.com"></iframe>
<p>paragraph</p>
</body>
</html>

Click to view the demo

The code above generates the following result.

Create an inline frame(iframe) in HTML and CSS