|
Posted by salmanjavaheri on February 19, 2008, 3:59 am
Please log in for more thread options > On 18 Feb, 09:09, salmanjavah...@yahoo.co.uk wrote:
>
> > Hi is there any simple way to get a footer in an html page?
>
> No.
>
> You can do this (and do it well) with XSL:FO, which is much more
> complicated but is targetted more for print-based output and has far
> better features for this sort of task. Not much use on the web though.
>
> You could also try <table> markup and using <thead> and <tfoot>
> elements. In _some_ contexts, these may be printed as repeated headers
> and footers for each page that the table spans. Note though that this
> has two drawbacks: It's far from reliable (print handling
> implementation in HTML is usually poor and this behaviour isn't a
> mandatory requirement anyway.) Secondly it's a clear abuse of <table>
> as a purely layout feature.
thanks for the help - will take a look
i'm 99% sure whatever is in the head tag appears at the top of every
page
|