Il codice html è questo:
codice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link rel="stylesheet" type="text/css" href="Base.css" />
<title>Software G&L</title>
</head>
<body>
<div id="Raggruppa">
<div id="Intestazione">
<h1> Gestione</h1>
[img]Img/Logo.png[/img]
</div>
<div id="Contenitore">
<div id="Piede">
Software Copyright © [P.iva ] info@.it tel/fax
</div>
</div>
</body>
</html>
Il codice css:
codice:
html, body {
text-align: center;
padding: 0.5%;
background-color: #EEE;
}
img { border:none }
#Raggruppa{
margin:auto;
height: 100%;
font: normal 10px "Verdana" ;
background-color: green;
color: green;
border: 1px solid #777;
}
#Intestazione{
width: 99.7%;
padding: 1px;
vertical-align: middle;
border: ridge green;
}
#Intestazione h1{
display: inline;
text-align: left;
color: blue;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 400%;
font-style: oblique;
margin-left: -60%;
}
#Intestazione a{
display: inline;
}
#Intestazione img{
float: right;
padding-top: .4%;
padding-right: 1%;
margin: 0px auto;
vertical-align: baseline;
}
#Contenitore{
width: 98%;
background-color: yellow;
vertical-align: middle;
padding: 1%;
}
#Piede{
clear: both;
text-align: right;
background-color: orange;
color: black;
font-size: 12px;
}