ok I am looking to see if there is a way around the ssi/asp way of including a html document to everypage of my web site.
so I found this online
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Template - Header, Indexer, Footer</title>
<script src="header.html" type="text/html"></script>
<script src="indexer.html" type="text/html"></script>
<script src="footer.html" type="text/html"></script>
</head>
<body>
<div id="header">
<!-- innerHTML inserted by header.html -->
</div>
<div id="indexer">
<!-- innerHTML inserted by indexer.html -->
</div>
<div id="footer">
<!-- innerHTML inserted by footer.html -->
</div>
</body>
</html>
I am not much of a css person so could anyone explain how/if I can make this work.
it was originally like this:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Template - Header, Indexer, Footer</title>
<script src="header.js" type="text/js"></script>
<script src="indexer.js" type="text/js"></script>
<script src="footer.jsl" type="text/js"></script>
</head>
<body>
<div id="header">
<!-- innerHTML inserted by header.js -->
</div>
<div id="indexer">
<!-- innerHTML inserted by indexer.js -->
</div>
<div id="footer">
<!-- innerHTML inserted by footer.js -->
</div>
</body>
</html>
