I created a "header" page with the following code. However, I can't find the directive to make the header show the name of the directory it is displaying. Any guidance is appreciated. Thanks!
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style type="text/css">
body
{
margin: 20px;
padding: 0;
font: normal 85% arial, helvetica, sans-serif;
color: #000;
background-color: #fff;
}
.floatleft
{
clear: left;
width: 95%;
height: 50px;
font: normal 400% arial, helvetica, sans-serif;
color: white;
background-color: #F63;
}
.floatright
{
clear: left;
width: 95%;
height: 50px;
font: normal 400% arial, helvetica, sans-serif;
color: #F63;
background-color: #F63;
}
.p1 {
width: 95%;
font: normal small arial, helvetica, sans-serif;
color: white;
background-color: #F63;
}
.p2 {
width: 95%;
font: normal small arial, helvetica, sans-serif;
color: #F63;
background-color: #F63;
}
.H1 {
font-style: blue;
}
.H2 {
font-style: blue;
}
.hr {COLOR: #6699FF;
width: 95%;
size: 5px;
}
</style>
</head>
<body>
<div class="hr">
<font color="blue"><hr noshade></hr></font>
</div>
<div class="floatleft">
macarena.com
</div>
<div class="p1">This is a private website, accessible by invitation only. If you are an uninvited visitor, you must leave immediately. Thanks!
</div>
<div class="hr">
<font color="blue"><hr noshade></hr></font>
</div>
|