Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Load a HTML page within another HTML page

Tags:

I need to display or load a HTML page within another HTML page on a button click.I need this in a popup with the main html page as the background.

Any help is appreciated.

like image 860
vijay Avatar asked Aug 20 '12 05:08

vijay


1 Answers

iframe is the tag which you can use for call other html pages into your web page

<iframe src="http://www.google.co.in" name="targetframe" allowTransparency="true" scrolling="no" frameborder="0" >     </iframe> 
like image 79
Jitender Avatar answered Sep 21 '22 18:09

Jitender