Advertisement
Guest User

Untitled

a guest
Aug 19th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.85 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  <head>
  4.   <title>Конференция</title>
  5.  </head>
  6.  <body>
  7.     <h1>Отправка заявки на конференцию</h1>
  8.     <form>
  9.         <h2>Основные данные</h2>
  10.         <h3>* Фамилия, Имя, Отчество:</h3>
  11.         <input type="text" size="50" name="">
  12.         <h3>Дата рождения:</h3>
  13.         <input type="text" placeholder="дд.мм.гггг" name="">
  14.         <h3>Пол:</h3>
  15.         <input type="radio" name="gender"> мужской
  16.         <input type="radio" name="gender"> женский
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.         <input type="checkbox" name=""> <label>Проживание в отеле</label><br>
  25.         <input type="checkbox" checked name=""> <label>Завтрак</label><br>
  26.         <input type="checkbox" name=""> <label>Обед</label><br>
  27.         <input type="checkbox" name=""> <label>Ужин</label>
  28.     </form>
  29.  </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement