Advertisement
gastaojunior

exemplo de formulario

Oct 11th, 2012
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.68 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <form action="formulario1.php" method="GET">
  6.     Nome: <input type="text" name="nome"><br>
  7.     Telefone: <input type="text" name="fone"><br>
  8.     <input type="radio" name="sexo" value="H">Homem<br>
  9.     <input type="radio" name="sexo" value="F">Mulher<br>
  10.     <input type="checkbox" name="veiculo[]" value="Bicicleta">Eu tenho uma bicicleta<br>
  11.     <input type="checkbox" name="veiculo[]" value="Carro">Eu tenho um carro<br>
  12.     <input type="submit" value="Enviar" name="btnEnviar">
  13.     <input type="submit" value="Outro enviar" name="btnOutroEnviar">
  14.     <input type="submit" value="Outro enviar Sem nome" >
  15.     <input type="reset" value="Limpar">
  16.    
  17. </form>
  18.  
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement