Advertisement
hercioneto

pw1-2017 formularios.html

Sep 21st, 2017
555
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.67 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <!-- Arquivo: formularios.html -->
  3. <html>
  4.     <head>
  5.         <meta charset="utf-8"/>
  6.         <title> Formulários </title>
  7.         <style>
  8.         .fNome { color: red;
  9.         background-color:blue;
  10.         font-size:50px; }
  11.         </style>
  12.     </head>
  13. <body>
  14. <h1> Iniciando com formulários</h1>
  15. <form action="retorno.php" method="get">
  16. <label for="nome">Nome:</label>
  17. <input type="text" class="fNome" name="nomePessoa" id="nome"
  18. placeholder="Digite seu nome"  required/>
  19. <br/>
  20. <label for="email">Email:</label>
  21. <input type="text" name="emailPessoa" id="email"
  22. value="email@teste.com.br" required
  23. />
  24. <p><input type="submit" value="Vai formulário" name="submit">
  25. <p/>
  26. </form>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement