How to load a Div with html?

NIGHT

New member
I'm making a site, of which I want the side of my site to be on every page. But the pages style's are all diferent. So is it possible to put the side of my site in a DIV and of the HTML pages just load that div?
 
There are at least four ways to place the same content on the side of every page on your website.

These include:

Server Side Includes: <!--#include virtual="side.txt" -->
PHP: <?php include("side.txt"); ?>
iframe: <iframe src="side.txt" width="150" height="500">
ppwizard: #include side.txt

PPWizard is a pre-processor that allows you to create complex websites as static pages that you can upload to virtually any webhost without having to use a server side scripting language or database.

For more on the iframe tag and ppwizard see: http://www.html-tags-guide.com/html-iframe-tag.html and http://www.html-tags-guide.com/html-software.html
 
There are at least four ways to place the same content on the side of every page on your website.

These include:

Server Side Includes: <!--#include virtual="side.txt" -->
PHP: <?php include("side.txt"); ?>
iframe: <iframe src="side.txt" width="150" height="500">
ppwizard: #include side.txt

PPWizard is a pre-processor that allows you to create complex websites as static pages that you can upload to virtually any webhost without having to use a server side scripting language or database.

For more on the iframe tag and ppwizard see: http://www.html-tags-guide.com/html-iframe-tag.html and http://www.html-tags-guide.com/html-software.html
 
Back
Top