Advertisement
csfeijo

pagina.html

Jul 28th, 2020
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.62 KB | None | 0 0
  1. <html lang="en">
  2.  
  3. <head>
  4.   <meta charset="UTF-8">
  5.   <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.   <title>Página</title>
  7.   <link rel="stylesheet" href="css/pagina.css">
  8. </head>
  9.  
  10. <body>
  11.  
  12.   <h1>Bem vindo!</h1>
  13.  
  14.   <!-- id : identificador ÚNICO (como se fosse um CPF) e só pode existir UM POR PÁGINA -->
  15.   <!-- o nome do ID deve seguir os mesmos padrões vistos (sem acento, sem espaço, e tudo minusculo...) -->
  16.   <p id="destaque">Parágrafo 1</p>
  17.   <p>Parágrafo 2</p>
  18.   <p class="grandao">Parágrafo 3</p>
  19.   <p class="grandao">Parágrafo 4</p>
  20.   <p>Parágrafo 5</p>
  21.  
  22.  
  23. </body>
  24.  
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement