Create a php page with the header and footer, and in the middle use include() to insert the file you want to display. <html> <head> </head> <body> <div id="header"></div> <div id="main"><?php include('file.html'); ?></div> </div id="footer"></div> </body> </html> Code (markup):