Header and footer in HTML

Solved/Closed
JudySis - 28 Jan 2008 à 02:47
 Blocked Profile - 17 Sep 2010 à 07:26
Hello,
Is it possible to include a header and footer file using HTML? I have my file (saved as a .html) and need to be able to include the HTML for the header and footer. Anyone know how I can do this?
Thanks a lot.

5 responses

..how to set Header and footer in HTML with ex
14 Jul 2008 à 05:18
how to set Header and footer in HTML with example
Pls tell me How to set Header (seperate page) and footer (seperate page) in a master HTML page with example
JaCk... > Shri
7 May 2009 à 22:06
Use Div to set header footers
asdf
give me the code for creating header and footer
abc > manju
26 Oct 2009 à 13:31
<!-- IE in quirks mode -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<title>Fixed header and footer</title>
<style type="text/css">
body{
margin:0;
padding:header-<length> 0 footer-<length> 0;
}
div#header{
position:absolute;
top:0;
left:0;
width:100%;
height:header-<length>;
}
div#footer{
position:absolute;
bottom:0;
left:0;
width:100%;
height:footer-<length>;
}
@media screen{
body>div#header{
position:fixed;
}
body>div#footer{
position:fixed;
}
}
* html body{
overflow:hidden;
}
* html div#content{
height:100%;
overflow:auto;
}
</style>
<div id="header"> header </div>
<div id="footer"> footer </div>
<div id="content"> content </div>
You can use SSI (Server Side Includes) http://httpd.apache.org/docs/1.3/howto/ssi.html.html ... the best way would be to use a server side langage like PHP (simple and easy to learn)

<?php include "http://www.mydomain/header.php" ?>

<stong>MY HTML CODE IN THE MAIN CELL</strong>

<?php include "http://www.mydomain/footer.php" ?>
hey, I am trying to design a logo with html and use it as a hesder for my web page. please show me both how to create the logo and code for inserting a header and a footer
use photoshop!
Blocked Profile
17 Sep 2010 à 07:26
Hello JudySis,

Please have clear information about the specific matter from the below address.

https://www.w3schools.com/html/html_tables.asp

Thank you.
how to make a front page in html.