Advertisement
info1atual

Página Simples

Apr 25th, 2014
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.49 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="pt">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Teste</title>
  6.  
  7.     <link href='http://fonts.googleapis.com/css?family=Averia+Sans+Libre' rel='stylesheet' type='text/css'>
  8.    
  9.  
  10. <style type="text/css">
  11.  
  12. body {
  13.         font: 14px 'Averia Sans Libre', cursive;
  14.         background: #ccc;
  15.         background-image: url("imagens/fundo.png");
  16. }
  17.  
  18. html, body {
  19.         height: 100%;
  20. }
  21.        
  22.         #topo {
  23.         width: 100%;
  24.         height: 55px;
  25. }
  26. #corpo {
  27.         width: 100%;
  28.         margin: 0 auto;
  29.         padding: 0;
  30.         text-align: center;
  31.         overflow: hidden;
  32. }
  33. #conteudo {
  34.         max-width: 960px;
  35.         min-width: 100px;
  36.         margin: 0 auto;
  37.         padding: 0.9em 0.5em;
  38.         min-height: 100%;
  39.         margin-top: 0;
  40.         overflow: hidden;
  41.         clear: both;
  42.         color: #333;
  43.         border: 10px;
  44. }
  45. #rodape {
  46.         width: 100%;
  47.         margin: 0 auto;
  48.         padding: 0;
  49.         float: none;
  50.         text-align: center;
  51.         overflow: hidden;
  52.         bottom: 0;
  53.         background: #1D622B;
  54. }
  55. div.margem_inferior {
  56.         height: 53px;
  57.         color: #ccc;
  58.         clear: both;
  59.         overflow: hidden;
  60.         z-index: -100;
  61. }
  62. </style>
  63.  
  64. </head>
  65.  
  66. <body>
  67.    
  68.     <div id="corpo">
  69.                
  70.         <div id="topo">
  71.                
  72.  
  73.         </div>
  74.  
  75.         <div id="conteudo">
  76.                
  77.  
  78.         </div>
  79.        
  80.     </div>
  81.  
  82.     <div id="rodape">
  83.            
  84.  
  85.     </div>
  86.  
  87. </body>
  88. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement