Advertisement
JulianoAmerico

Untitled

Apr 26th, 2019
531
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.74 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <title>Rodapé</title>
  7.     <link rel="stylesheet" href="">
  8.     <style>
  9.         footer{
  10.             background-color: black;
  11.             color: white;
  12.             height: 150px;
  13.         }
  14.  
  15.         div.left{
  16.             position: relative;
  17.             left: 80px;
  18.             top: 20px;
  19.         }
  20.  
  21.         div.right{
  22.             position: absolute;
  23.             right: 80px;
  24.             top: 20px;
  25.         }
  26.     </style>
  27. </head>
  28. <body>
  29.     <footer>
  30.         <div class="left">
  31.             <p>contato@exemplo.com.br</p>
  32.             <p>41 5555-5555</p>
  33.             <p>&copy; Empresa Ltda. Todos os Direitos Reservados</p>
  34.         </div>
  35.         <div class="right">
  36.             <p>Rua do Endereço, 123, Bairro</p>
  37.             <p>CEP 800000-000</p>
  38.             <p>Curitiba-PR</p>
  39.         </div>
  40.     </footer>
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement