Advertisement
hercioneto

Exemplo HTML 2

Oct 26th, 2023
993
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.73 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Minha Página</title>
  6.     <style>
  7.         body {
  8.             font-family: Arial, sans-serif;
  9.             margin: 0;
  10.             padding: 0;
  11.         }
  12.  
  13.         header {
  14.             background-color: #333;
  15.             color: #fff;
  16.             text-align: center;
  17.             padding: 20px;
  18.         }
  19.  
  20.         header img {
  21.             width: 30%;
  22.             border-radius: 3%;
  23.         }
  24.  
  25.         header h1 {
  26.             display: inline;
  27.         }
  28.  
  29.         .container {
  30.             width: 80%;
  31.             margin: 0 auto;
  32.             padding: 20px;
  33.         }
  34.  
  35.         .column {
  36.             width: 30%;
  37.             float: left;
  38.             margin: 10px;
  39.         }
  40.  
  41.         footer {
  42.             background-color: #333;
  43.             color: #fff;
  44.             text-align: center;
  45.             padding: 20px;
  46.            
  47.         }
  48.  
  49.         footer .division {
  50.             width: 25%;
  51.             display: inline-block;
  52.         }
  53.     </style>
  54. </head>
  55. <body>
  56.     <header>
  57.         <img src="imagens/logo.jpg" alt="Logo">
  58.         <h1>Título da Página</h1>
  59.     </header>
  60.  
  61.     <div class="container">
  62.         <div class="column">
  63.             <h2>Coluna 1</h2>
  64.             <p>Texto da coluna 1.</p>
  65.         </div>
  66.  
  67.         <div class="column">
  68.             <h2>Coluna 2</h2>
  69.             <p>Texto da coluna 2.</p>
  70.         </div>
  71.  
  72.         <div class="column">
  73.             <h2>Coluna 3</h2>
  74.             <p>Texto da coluna 3.</p>
  75.         </div>
  76.     </div>
  77.  
  78.     <footer>
  79.         <div class="division">Divisão 1</div>
  80.         <div class="division">Divisão 2</div>
  81.         <div class="division">Divisão 3</div>
  82.     </footer>
  83. </body>
  84. </html>
  85.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement