show-notice
hide-notice

Friday 9 August 2013

HTML iframe Tag


Introduction:

The HTML iframe tag is used to specify an inline frame.An inline frame allows you to embed another document within the current HTML document. You use the iframe src attribute to specify the source of the other document, as well as other attributes to determine the height, width, scrolling properties, border etc.

Example:
<html>
<head>
<title>HTML iframe Tag</title>
</head>
<body>
<iframe src="http://www.gohilinfotech.blogspot.in/"
  width="200"
  height="150"
  scrolling="auto"
  frameborder="1">
  <!--This bit is only viewed by browsers that don't support inline frames -->
  Your browser doesn't support inline frames.
</iframe>
</html>

SHARE THIS POST   

0 comments :

Post a Comment

Design by Gohilinfotech | www.gohilinfotech.blogspot.com