Sunday, July 14, 2013

Simple HTML and CSS ( from PSD)


html
<!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" />
<title></title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>

    <body>
     <div class="header"></div>
     <div class="container">
             <div class="left"></div>
            <div class="middle">
              
                <img src="images/image1.png" width="511px" height="323px" />
                <img src="images/image2.png" width="511px" height="323px" />
                <img src="images/image3.png" width="511px" height="323px" />
           
           
            </div>
            <div class="right"></div>
    
    
    
     </div>
     <div class="footer"></div>
   
    </body>
   
   
</html> 


CSS
------------------------------------------------------

.header
{ background-image:url(images/header.png); background-repeat:repeat-x;
height:102px;
width:988px;
clear:both;}

.container
{
    width:988px;
    height:1138px;
    background-color:#f2f2f2;}
   
    .footer
    { background-image:url(images/footer.png);
    background-repeat:repeat-x;
    width:988px;
    height:56px;}
   
    .left
    { width:206px;
    height:906px;
    float:left;
    background-color:#999;
       
        }
       
        .middle
        { width:515px;
        height:1138px;
        background-color:#309;
        float:left;
         margin-left:29px;}
       
         .right
         { width:207px;
         height:701px;
         background-color:#666;
         float:right;
         margin-right:15px;
             }

No comments:

Post a Comment