Hello.
I have many web pages that have a lot of the same content on every single page, like upper navigation menu or footer. Until now I use PHP include command to avoid situation when I wish to change whole upper menu and I need to change this in 100 documents. Now I wish to make the same but in pure HTML5. Is this possible? I try to use <iframe seamless> but it seam not to work in the way I expect. For example my footer looks like this:
<footer>
<section>
2010 © yansen
</section>
</footer>
And it’s CSS3 formatted. Anyone can help me? Am I still forced to use PHP in such a case (or JS and document.write???).
Best regards
Yansen