Advertisement
hercioneto

Exemplo Formulário

Nov 1st, 2023
917
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. <!--
  3. Salvar como calculo.html
  4.     -->
  5. <html lang="pt-br">
  6. <head>
  7.     <meta charset="utf-8">
  8.     <title>Entrada de dados</title>
  9. </head>
  10. <body>
  11.     Preencha o formulário:
  12.     <form action="calcular.php" method="post">
  13.         <label for="nome">Veículo:</label>
  14.         <input type="text" id="veiculo" name="veiculo" required><br><br>
  15.  
  16.         <label for="nome">Distância:</label>
  17.         <input type="text" id="distancia" name="distancia" required>(em km)<br><br>
  18.  
  19.  
  20.         <label for="nome">Tempo:</label>
  21.         <input type="text" id="tempo" name="tempo" required>(em horas)<br><br>
  22.  
  23.         <input type="submit" value="Enviar">
  24.     </form>
  25. </body>
  26. </body>
  27. </html>
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement