Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Анкета за ученик</title>
  6. <style>
  7. body {
  8. margin-left: 50px;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13.  
  14. <h1 style="text-align: center; padding-bottom: 50px;"><strong>Анкета за ученици</strong></h1>
  15.  
  16. <h2>Моля въведете необходимите данни</h2>
  17. Име <input type="text" style="margin-left: 33px; width: 20%"><br>
  18. Фамилия <input type="text" style="width: 258px"><br>
  19. ЕГН <input type="text" style="margin-left: 31px; width: 20%"><br>
  20.  
  21. <h2>1.Ученици, по колко сефлита си правите на ден?</h2>
  22. <select style="width: 8%; height: 40px">
  23. <option value="1">1</option>
  24. <option value="2">2</option>
  25. <option value="3">3</option>
  26. <option value="4">4</option>
  27. <option value="5">5</option>
  28. <option value="6">6</option>
  29. <option value="7">7</option>
  30. </select>
  31.  
  32. <h2>2.Ученици, искате ли да ви е разрешено ползването на телефони в училище?</h2>
  33. <input type="radio">Да
  34. <input type="radio">Не
  35. <input type="radio">Не знам
  36.  
  37. <h2>3.Ученици, как се придвижвате до училище?</h2>
  38. <input type="radio">Пеша
  39. <input type="radio">Училищен автобус
  40. <br>
  41. <input type="radio">Градски транспорт
  42. <input type="radio">Родителите ми ме карат с колата
  43.  
  44. <h2>4.Учиници, кое е основната причина да ходите на училище</h2>
  45. <textarea style="width: 60%; height: 300px"></textarea><br><br><br>
  46.  
  47. <button style="padding: 8px 10px;
  48. border: 1px solid black;
  49. background-color: white;
  50. border-radius: 8px">Приеми
  51. </button>
  52.  
  53. <br><br>
  54.  
  55. <button style="padding: 8px 10px;
  56. border: 1px solid black;
  57. background-color: white;
  58. border-radius: 8px">Отказ
  59. </button>
  60.  
  61.  
  62. </body>
  63. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement