How IFRAME use in HTML with example?
<html>
<head>
<title> iframe Example </title>
</head>
<body bgcolor="#ffffff">
<h1> iframe example </h1>
<p> The following content is in an iframe: </p>
<iframe src ="http://tutorial.fileworld.in/" width="500" height="400" style="border: 1px solid #666">
</iframe>
</body>
</html>
(NOTE-<h1> tag is for heading. Use source attribute in font of IFRAME SRC like <iframe src ="source attribute" width="400" height="100" style="border: 1px solid #666">)
<html>
<head>
<title> iframe Example </title>
</head>
<body bgcolor="#ffffff">
<h1> iframe example </h1>
<p> The following content is in an iframe: </p>
<iframe src ="http://tutorial.fileworld.in/" width="500" height="400" style="border: 1px solid #666">
</iframe>
</body>
</html>
(NOTE-<h1> tag is for heading. Use source attribute in font of IFRAME SRC like <iframe src ="source attribute" width="400" height="100" style="border: 1px solid #666">)
OUTPUT-
iframe Example
No comments:
Post a Comment