Set Frame Inside HTML

The Tutorial helps you to understand how to set Frame Inside HTML. In this Tutorial, the
code create a Inline frame inside a HTML page.
Understand with Example
The Example create a HTML page with Inline Frame inside it. For this we
create a html page name iframe.htm. The code begin with <html> tag, Inside
the html tag, we have <body> tag, which define
<iframe src> : The <iframe src> create a
frame within a html page and src specifies the url,html of the document
which moves into a frame.
<html>
<body>
<iframe src="cascading-style.html"></iframe>
<p>showing you a iframe.</p>
<p>iframe is not supported by all browser.</p>
</body>
</html>
</HEAD>
</HTML> |
On browser, the output code is displayed as
Download Source

|