sravanthi
sravanthi

Reputation: 183

Is it Possible with out using Iframes we can display HTML page inside an other Html Page?

I am new to HTML5,i need to display one HTML page Inside an other HTML page with out using frames&iframes. please help me.

Upvotes: 0

Views: 48

Answers (2)

Salman
Salman

Reputation: 3726

You will probably be hosting your HTML web pages in some kind of a server. So in an Apache server you can use PHP include() function.
Or in IIS you can use ASP #include directive

Upvotes: 0

Moin Zaman
Moin Zaman

Reputation: 25445

the other way is to 'scrape' other web pages via AJAX and insert contents into an element on your page.

Upvotes: 1

Related Questions