Guest User

Untitled

a guest
Jan 24th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.43 KB | None | 0 0
  1. <head>
  2.     <style type="text/css">
  3.         *{
  4.             margin:0;
  5.             padding:0;
  6.             border:0;
  7.             font-family: Georgia, "Times New Roman", Times, serif;
  8.             font-weight: normal;
  9.         }
  10.        
  11.         body {
  12.             background-color: #827263; 
  13.         }
  14.        
  15.         #contenedor{
  16.             width: 100%;
  17.             height: 100%;
  18.         }
  19.        
  20.         #header{
  21.             width: 100%;
  22.             height: 100px;
  23.             color: #fff;
  24.             background-color: #E52F3C;
  25.         }
  26.  
  27.         #navegacion{
  28.             width: 100%;
  29.             height: 40px;
  30.             color: #fff;
  31.             background-color: #BE0A17;
  32.             border-bottom: 5px solid #97000a;
  33.         }
  34.        
  35.         #contenido {
  36.             width: 950px;
  37.             height: 81%;
  38.             margin: 20 auto;
  39.             background-color: #fff;
  40.         }
  41.        
  42.         #izquierdo {
  43.             width: 70%;
  44.             height: 100%;
  45.             float:left;
  46.         }
  47.        
  48.         #derecho {
  49.             width: 30%;
  50.             height: 100%;
  51.             background-color: #B9A06A;
  52.             float:left;
  53.         }
  54.        
  55.         #footer {
  56.             width: 950px;
  57.             height: 100px;
  58.             background-color: #aaa;
  59.             margin: 20 auto;
  60.         }
  61.        
  62.         .titulo {
  63.             width:600px;
  64.             height:40px;
  65.             background-color: #271C18;
  66.             margin: 20 auto;
  67.         }
  68.        
  69.         .titulo p{
  70.             color: white;
  71.             padding-top: 10px;
  72.             padding-left: 10px;
  73.         }
  74.        
  75.     </style>
  76. </head>
  77. <body>
  78.     <div id="contenedor">
  79.        
  80.         <div id="header">
  81.         </div>
  82.        
  83.         <div id="navegacion">
  84.         </div>
  85.        
  86.         <div id="contenido">
  87.             <div id="izquierdo">
  88.            
  89.                 <div class="titulo"> <p>ABC</p> </div>
  90.                
  91.             </div>
  92.            
  93.             <div id="derecho"></div>
  94.         </div>
  95.        
  96.         <div id="footer"></div>
  97.     </div>
  98. </body>
Add Comment
Please, Sign In to add comment