PHP Code:
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8-8859-1" />
<title>TestSite</title>
<style>
#header {
width: 1200px;
height: 130px;
background-color: grey;
margin-right: auto;
margin-left: auto;
}
#footer {
width: 1200px;
height: 130px;
background-color: grey;
margin-right: auto;
margin-left: auto;
}
#content {
width: 782px;
height: 597px;
margin-right: auto;
margin-left: auto;
background-color: #123456;
}
#menu {
width: 200px;
height: 300px;
background-color: #234567;
margin-left: 360px;
float: left;
}
#login {
width: 200px;
height: 215px;
background-color: #234567;
margin-right: 360px;
float: right;
}
</style>
</head>
<body>
<div id="header">
</div>
<div id="menu">
</div>
<div id="login">
</div>
<div id="content">
</div>
<div id="footer">
</div>
</body>
</html>