How to use IFrames in HTML ?

Vivek.Ramapuram
Posted by Vivek.Ramapuram under HTML 5 category on | Points: 40 | Views : 1115
<body>   
<p>This text is in the main page.</p>
<iframe src="frame1.htm" width="300" height="150" frameborder="0"></iframe>
<p>This text is in the main page.</p>
</body>


We should write a style sheet to display a color in the IFRAME
We have written as src=style sheet name I have taken as "frame.1"
<body style="background-color: lightblue">  
<p>This text is in iframe page</p>
</body>

This is the style sheet

Comments or Responses

Login to post response