Advertisement
csfeijo

Exercício Semana 2

Feb 5th, 2021
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.71 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.   <meta charset="UTF-8">
  6.   <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.   <title>Contato</title>
  8.   <link rel="stylesheet" href="css/contato.css">
  9. </head>
  10.  
  11. <body>
  12.   <h1>Contato</h1>
  13.   <div class="conteudo">
  14.  
  15.     <form action="">
  16.       <input type="text" name="nome" placeholder="Digite seu nome">
  17.       <input type="text" name="email" placeholder="Digite seu e-mail">
  18.       <textarea name="mensagem"></textarea>
  19.       <label>
  20.         <input type="checkbox" name="aceito" class="aceito"> Aceito receber informações por e-mail
  21.       </label>
  22.       <br>
  23.       <button type="submit">ENVIAR</button>
  24.     </form>
  25.  
  26.   </div>
  27. </body>
  28.  
  29. </html>
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement