Header and footer in HTML
Solved/Closed
Related:
- Header and footer in HTML
- Front panel audio header - Guide
- How to insert page number in footer in openoffice writer - Guide
- Php redirect header - Guide
- Email header structure - Guide
5 responses
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" ?>
<?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
Hello JudySis,
Please have clear information about the specific matter from the below address.
https://www.w3schools.com/html/html_tables.asp
Thank you.
Please have clear information about the specific matter from the below address.
https://www.w3schools.com/html/html_tables.asp
Thank you.
Didn't find the answer you are looking for?
Ask a question
Apr 13, 2009 at 05:25 AM
May 7, 2009 at 10:06 PM
Jun 1, 2009 at 03:01 AM
Jul 22, 2009 at 07:29 AM
Oct 26, 2009 at 01:31 PM
<!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>