Advertisement
sagaida

forma

Aug 19th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.80 KB | None | 0 0
  1.  <form id="form" action="save-car.php" method="POST">
  2.                 <label><input type="text" name="model" placeholder="model" id="model">Model*</label><br>
  3.                 <label><input type="text" name="speed" placeholder="speed" id="speed">Speed</label><br>
  4.                 <label><input type="text" name="year" placeholder="year" id="year">Year</label><br>
  5.                 <label>
  6.                     <select name="country" required>
  7.                     <option value="ukraine">ukraine</option>
  8.                     <option value="germany">germany</option>
  9.                     <option value="finland">finland</option>
  10.                     <option value="usa">usa</option>
  11.                     <option value="canada">canada</option>
  12.                     <option value="netherlands">netherlands</option>
  13.                     <option value="poland">poland</option>
  14.                     <option value="france">france</option>
  15.                     <option value="bulgary">bulgary</option>
  16.                     <option value="australia">australia</option>
  17.                 </select>Country*</label>
  18.             <br>
  19.             <div id="selectfield">
  20.                 <p id="bodytype">Body type*:</p><br>
  21.                 <label for="sedan">Sedan</label>
  22.                 <input type="radio" name="body" value="sedan" id="sedan">
  23.                 <label for="universal">Universal</label>
  24.                 <input type="radio" name="body" value="universal" id="universal">
  25.                 <label for="hatchback">Hatchback</label>
  26.                 <input type="radio" name="body" value="hatchback" id="hatchback">
  27.                 <label for="cabrio">Cabrio</label>
  28.                 <input type="radio" name="body" value="cabrio" id="cabrio">
  29.                 <input type="submit" value="add" id="add">
  30.             </div>
  31.         </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement