Advertisement
hercioneto

Exercicio1 - 2019 PW2

Mar 25th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.71 KB | None | 0 0
  1. <!-- index.html -->
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6.     <title>Formulário Veículo</title>
  7. </head>
  8. <body>
  9.     <form action="retorno.php" method="POST">
  10. <div>Marca: <br><input type=" text" name="marca">
  11. </div>
  12. <div>Modelo: <br><input type="text" name="modelo">
  13. </div>
  14. <div>Ano / Ano modelo: <br><input type="text" name="ano" maxlength="4" size="5"> <input type="text" name="anoModelo" maxlength="4" size="5">
  15. </div>
  16. <div>Placa: <br><input type="text" name="placaA" maxlength="3" size="4">-<input type="text" name="placaNum" maxlength="4" size="5">
  17. </div>
  18. <div><input type="submit" name="enviar" value="Enviar"></div>
  19. </form>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement