Reputation: 183
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
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
Reputation: 25445
the other way is to 'scrape' other web pages via AJAX and insert contents into an element on your page.
Upvotes: 1