Advertisement
dzimmo

Untitled

Jun 11th, 2018
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.71 KB | None | 0 0
  1.                       <form action="/" method="POST">
  2.                           <div class="row">
  3.                             <input type="text" placeholder="Введите имя" name="firstname" />
  4.                           </div>
  5.                           <div class="row">
  6.                             <input type="text" placeholder="Введите возраст" name="age" />
  7.                           </div>
  8.                           <div class="row">
  9.                             <input type="radio" name="gender" value="male" />
  10.                             <label for="">мужской</label>
  11.                           </div>
  12.                           <div class="row">
  13.                             <input type="radio" name="gender" value="female" />
  14.                             <label for="">женский</label>
  15.                           </div>
  16.                           <div class="row">
  17.                             <input type="submit" value="Отправить" />
  18.                           </div>
  19.                         </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement