The code for the 5 files are:
Code for "style.css"
body {
background-color: ;
font-family: ;
font-size: px;
color:;
margin:0px;
padding-bottom:px;
scrollbar-face-color:;
scrollbar-highlight-color:;
scrollbar-3dlight-color:;
scrollbar-darkshadow-color:;
scrollbar-shadow-color:;
scrollbar-arrow-color:;
scrollbar-track-color:;
}
.header {
height:px;
background:;
border:px solid ;
}
#mainbody {
margin-left:px;
padding-top:px;
padding-right:px;
padding-bottom:px;
padding-left:px;
background:;
border:px solid ;
}
#menu {
position:absolute;
top:px;
left:0px;
width:px;
background:;
color:;
border:px solid ;
text-align: center;
}
.menuitem {
width:px;
background:;
color:;
font-size:px;
border:px solid ;
text-align: center;
}
.menuhead {
left: 0px;
width:px;
background:;
color:;
border:px solid ;
text-align: center;
font-weight:;
font-size:px;
}
.footer {
width:100%;
text-align:center;
margin-top:px;
padding:px;
background:;
color:;
border:px solid ;
}
a:hover {
font-size:px;
background-color:;
color:}
h1 { font-size:px}
h2 { font-size:px}
h3 { font-size:px}
p,h1,h2,h3 {
margin: px px px px}
.heading {
font-family:;
font-size:px;
background-color:;
color:;
font-weight:;
text-align: center}
Code for "header.html"
<p>
</p>
Code for "menu.html"
Code for "homebody.html"
<!-- Note: Everything in this page can be replaced with the text that you want on the main page i.e. this is the 'homebody.html' page that is included in the template - so this will be the main page text for the right side -->
<h3 align="center">
Secret Hint:<br />
If PHP Includes Not Required<br />
Use the style sheet code <br />
Use view source (save as :) </h3>
<h2 align="center">
CSS Template<br/>
2 Column <br/>
With Header n Footer</h2>
Code for "footer.html"
<p>
</p>
Code for "index.php"
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>
Bookmark Title Here </title>
<meta name="robots" content="noarchive" />
<meta name="keywords" content=" Insert keywords - SOME search engines still use keywords" />
<meta name="description" content=" Description is used by some search engines" />
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="header">
<?php include ("header.html") ?>
</div>
<div id="menu">
<?php include ("menu.html") ?>
</div>
<div id="mainbody">
<?php include ("homebody.html") ?>
</div>
<div class="footer">
<?php include ("footer.html") ?>
</div>
</body>
</html>
VIP: This last file (index.php) is the main body of the php template. Please note that it 'loads' all the other 'pieces' into the web page i.e. the external style sheet and the php include files are the 'pieces'.
By setting up all pages using the code in the index.php file, you control all pages by changing 3 files (header, menu, footer). Then for individual pages you change the 'body' file (such as homebody, secondpagebody, etc). You also control the look n feel on all pages just by changing the external style sheet (style.css) file
P.S. Of course, you must have a host (such as IBDhost) that allows php to take advantage of the 'power' of the includes. However, if you just need the template code without using php / includes, just use view source and copy all the code.