Advertisement
hercioneto

pw1-2017 dadosVeiculo.html

Oct 5th, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.88 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <!-- Arquivo: dadosVeiculo.html -->
  3. <html>
  4.     <head>
  5.         <meta charset="utf-8"/>
  6.         <title> Dados do Veículo </title>
  7.         <style>
  8.         label { font-size: 14px; color: #666;
  9.         padding-left:26px;
  10.         width:125px;
  11.         text-transform: uppercase;
  12.         display:inline-block;  
  13.         }
  14.         input {
  15.         font-size: 16px; color: #999;
  16.         width:100px;
  17.         padding-left:10px;
  18.         }
  19.         </style>
  20.     </head>
  21. <body>
  22. <h1> Dados do Veículo:</h1>
  23. <form action="calculoMedia.php" method="post">
  24. <h2>Informe os dados:</h2>
  25. <label for="modelo">Modelo:</label>
  26. <input type="text" name="modelo" id="modelo" required/>
  27. <br/>
  28. <label for="km">Km Rodados:</label>
  29. <input type="text" name="km" id="km" required/>
  30. <br/>
  31. <label for="litros">Litros Gastos:</label>
  32. <input type="text" name="litros" id="litros" required/>
  33. <br/>
  34. <p><input type="submit" value="Calcular" name="submit">
  35. <p/>
  36. </form>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement