Advertisement
Guest User

Untitled

a guest
May 31st, 2016
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5.  
  6. <style type="text/css">
  7.  
  8. .kocke
  9. {
  10. height:305px;
  11. width:400px;
  12. background-color: #C8EDFA;
  13. margin: 25px auto;
  14. border: 1px solid black;
  15. padding-top: 30px;
  16. }
  17. label
  18. {
  19. display:block;
  20. margin :2px 20px;
  21. font-size:19px;
  22. }
  23. .input
  24. {
  25. margin : 2px 25px;
  26. height:25px;
  27. width: 350px;
  28. border: 1px solid #7FFAB2;
  29. }
  30. #text
  31. {
  32. margin:2px 25px;
  33. width: 350px;
  34. height:65px;
  35. border: 1px solid #7FFAB2;
  36. }
  37. #select
  38. {
  39. margin : 2px 25px;
  40. height:25px;
  41. width: 100px;
  42. display:block;
  43. }
  44. .button
  45. {
  46. float:right;
  47. height:25px;
  48. width:110px;
  49. margin:3px;
  50. }
  51. #temp
  52. {
  53. margin-right:25px;
  54. }
  55. </style>
  56. </head>
  57. <body>
  58.  
  59. <div class="kocke">
  60. <label>Ime: </label> <input type="text" class="input">
  61. <label>Email: </label> <input type="text" class="input">
  62. <label>korisničko ime: </label> <input type="text" class="input">
  63. <label>Lozinka: </label> <input type="password" class="input">
  64. <label> Spol: <input type="radio" name="spol"> Muški <input type="radio" name="spol"> Ženski</label>
  65. </div>
  66.  
  67.  
  68. <div class="kocke">
  69.  
  70. <label> Infomacije koje biste voljeli primati na mail</label>
  71. <textarea id="text"> </textarea>
  72. <label>Kategorije za koje ste zainteresirani</label>
  73. <label> <input type="checkbox">Web Programiranje </label>
  74. <label> <input type="checkbox">Grafički dizajn </label>
  75. <label> <input type="checkbox">Softverski inzinjering </label>
  76. <label> Diploma koju posjedujete </label>
  77. <select id="select">
  78. <option value="Odaberite">Odaberite</option>
  79. <option value="Doktorat">Doktorat</option>
  80. <option value="Fakultet">Fakultet</option>
  81. <option value="Skola">Skola</option>
  82. </select>
  83. <div id="temp">
  84. <button type="button" value="Odustani" class="button">Odustani</button>
  85.  
  86. <button type="button" value="Registruj se" class="button">Regaj se</button>
  87. </div>
  88. </div>
  89.  
  90. </body>
  91. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement