If you are using only HTML then make use of Client side includes. Say for example you want copyright information to appear in all pages. Just make use of document.write and create a .
js file. As you can't have plain html directly inside .
js file ... we are using document.write. Now you can make use of <script src> tag to include this copyright info in all other pages in your site.
File 1:
<html>
<head>
<title>Demo of client side include</title>
</head>
<body>
<p>Below line would be INCLUDED from another file</p>
<script src="FileInclude.
js" type="text/javascript"></script>
<p>Above line is included from another file. But I belong to this file only :)</p>
</body>
</html>
File 2:
Just write below line of code in notepad and save it as "FileInclude.
js"
document.write("<b>This text is coming from another file</b>")
Best Regards
Vadivel
MVP ASP/ASP.NET
http://vadivel.thinkingms.com