InterviewSolution
Saved Bookmarks
| 1. |
Can we display a web page inside a web page or Is nesting of webpages possible? |
|
Answer» Yes, we can DISPLAY a web page INSIDE another HTML web page. HTML provides a tag <iframe> using which we can achieve this functionality. <iframe SRC=”URL of the web page to EMBED” /> |
|