how will you load multiple pages on a page?
Load multiple pages on one page
display multiple html pages in a single page | multiple pages in one html | creating multiple pages with navigation menus | creating multiple pages with navigation menus html | html multiple pages same layout | display multiple web pages on one page html | how to make multiple pages in html notepad
display multiple html pages in a single page | multiple pages in one html | creating multiple pages with navigation menus | creating multiple pages with navigation menus html | html multiple pages same layout | display multiple web pages on one page html | how to make multiple pages in html notepad
display multiple html pages in a single page | multiple pages in one html | creating multiple pages with navigation menus | creating multiple pages with navigation menus html | html multiple pages same layout | display multiple web pages on one page html | how to make multiple pages in html notepad
display multiple html pages in a single page | multiple pages in one html | creating multiple pages with navigation menus | creating multiple pages with navigation menus html | html multiple pages same layout | display multiple web pages on one page html | how to make multiple pages in html notepad
display multiple html pages in a single page | multiple pages in one html | creating multiple pages with navigation menus | creating multiple pages with navigation menus html | html multiple pages same layout | display multiple web pages on one page html | how to make multiple pages in html notepad
display multiple html pages in a single page | multiple pages in one html | creating multiple pages with navigation menus | creating multiple pages with navigation menus html | html multiple pages same layout | display multiple web pages on one page html | how to make multiple pages in html notepad display multiple html pages in a single page multiple pages in one html creating multiple pages with navigation menus creating multiple pages with navigation menus html html multiple pages same layout display multiple web pages on one page html how to make multiple pages in html notepad
Share
If you use an iframe, you can load the contents of page1 and page2 in one html file.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Load multiple pages</title>
</head>
<body>
<iframe src="page1.html" border="0"></iframe>
<iframe src="page2.html" border="0"></iframe>
</body>
</html>