Advertisement
alexappelt

Untitled

Jul 10th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.07 KB | None | 0 0
  1.  <!DOCTYPE html>
  2.  <html>
  3.  <head>
  4.     <title>
  5.     Classes e IDs  
  6.     </title>
  7.     <meta charset="utf-8">
  8.        
  9.      
  10.         <style type="text/css">
  11.         .azul{
  12.             color:red;
  13.         }
  14.  
  15.         #principal{
  16.             background: lightgray;
  17.         }
  18.  
  19.         #topo{
  20.             background: lightgray;
  21.         }
  22.  
  23.         #conteudo{
  24.             background: darkgray;
  25.         }
  26.  
  27.         .produto{
  28.             background: lightblue;
  29.             margin: 10px;
  30.         }
  31.  
  32.         #rodape{
  33.             background: lightgreen;
  34.         }
  35.  
  36.         #span{
  37.             background: pink;
  38.         }
  39.  
  40.         #span2{
  41.             background: lightpink;
  42.         }
  43.  
  44.         </style>
  45.  </head>
  46.    
  47.  
  48.  
  49.      <body>
  50.  
  51.     <div id="topo">
  52.         <img src="imagens/amazon.png" width="200">
  53.         <ul>
  54.             <li>Menu</li>
  55.             <li>Produtos</li>
  56.             <li>Contato</li>   
  57.         </ul>
  58.  
  59.     </div>
  60.  
  61.     <div id="conteudo">
  62.         <div class="produto">
  63.             Produto 1
  64.         </div>
  65.  
  66.         <div class="produto">
  67.             Produto 2
  68.         </div>
  69.  
  70.         <div class="produto">
  71.             Produto 3
  72.         </div>
  73.     </div>
  74.  
  75.     <div id="rodape">
  76.         Todos os direitos reservados
  77.     </div>
  78.  
  79.     <span id="span">
  80.         Promoções
  81.     </span>
  82.     <span id="span2">
  83.         Novidades
  84.     </span>
  85.  
  86.      
  87.      </body>
  88.  
  89.  
  90.  </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement