-
HTML Implementation
In a HTML Document, can I put HTML code in one file and put it into another. Par Example: I have a signature that I want to have on evey single document I write in HTML. Can I write that signature and put it into my document with some short code? Kinda like that external css-stuff
-
If you have support for ASP on your server, you could create something that gives the page as well as your signature beneath.
-
And if you have PHP (which is much more likely) then you can do a pretty similar thing.
And even MORE likely, just use an SSI #include statement:
<!--#include file="sig.hti"-->
-
Note that to use SSI, depending on your server config, you'll have to change your file extensions (html to shtml).