When trying to to html, how do I keep the header and footer the same for each links and page that opens from the main front page. Thanks
Use php. PHP is HTML but has more functionality. Here's an example I made: http://leev18.com/free-basic-php-template/
php is not like HTML, this is programming language not a markup language. @sjleads2 : You can use your home page link in header and footer both place.
If I understand the question completely which I think I do. I would Copy the code and keep pasting it in the right area inside the body. Make sure all the files are directed with the right path ex images and css files, this is if your images are not showing up properly in the page.
I can't understand your question but there is lot of difference between HTML and PHP . if you want to have header and footer same for all pages of your web site then this work can be done in PHP using page slicing..
to make the header and footer the same in HTML, you can only copy the element's code to all your other files
You should use php just read some thing about page slicing and you will be able to perform this work easily.....
two ways to do it 1- with HTML only you will make a div of header and div for footer and paste them into the new page, then put the content in between 2- with server side programming langauge like PHP, you can make a template, which for ex. a file that contains the header (header template), and link to it in the page on the top of your code with one line of code and another file that contains the footer(footer template) and link to it in the bottom of your page its called include function
I need help on css. I have already the css code and i want to chnge the style of it. Please help thanks
my dear please clear your question .did you you want to use a single header on every page of your website.
For example you can use php. You can creat header.php and footer.php then include it in your pages. It is very simple. I do not think you can do it in html.