: Save your HTML files with .shtml extension. Use SSI directives like <!--#include file="filename.html" --> to include other files.
<!DOCTYPE html> <html> <head> <title>Index Frame View</title> </head> <frameset cols="20%,80%"> <frame src="menu.shtml" name="navigation"> <frame src="<!--#include virtual='main_content.shtml' -->" name="main"> </frameset> </html> view indexframe shtml
Here’s a breakdown of what that means and how to approach it: : Save your HTML files with
<html> <frameset rows="100,*"> <frame src="header.shtml" scrolling="no"> <frame src="index.shtml"> </frameset> </html> !--#include file="filename.html" -->