Advertisement
Guest User

Registracija

a guest
Apr 18th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.43 KB | None | 0 0
  1. <html><head>
  2.     <meta charset="UTF-8">
  3.     <title> Веб Дизајн </title>
  4.     <style>
  5.         img{
  6.         position: absolute;
  7.         margin-left: 520px;
  8.        
  9. }
  10.     nav{
  11.     border: 1px solid black;
  12.     width: 100%;
  13.     height: 30px;
  14.     background: #2A2A2A;
  15. }
  16.     body{
  17.     border: 5px solid black;
  18.     background: white;
  19.     width: 800px;
  20. }
  21.     a{
  22.     text-decoration:none;
  23.     color:#FFFFFF;
  24.     font-weight: bold;
  25.     font-size: 16px;
  26. }
  27.     header{
  28.     height: 80px;
  29.     color: white;
  30.     background: silver;
  31. }
  32.     form{
  33.     margin-left: 10px;
  34. }
  35.     </style>   
  36. </head>
  37. <body>
  38.     <header>
  39.         <h1> Веб Дизајн </h1>
  40.     </header>
  41.     <nav>
  42.         <a href="register.html">Регистрација&nbsp;&nbsp;&nbsp;|</a>
  43.         <a href="login.html">&nbsp;&nbsp;&nbsp;Најава&nbsp;&nbsp;&nbsp;|</a>
  44.         <a href="kontakt.html">&nbsp;&nbsp;&nbsp;Контакт</a>
  45.     </nav>
  46.     <section>
  47.        
  48.         <h1>Регистрација</h1>
  49.         <form>
  50.         <p>&nbsp;&nbsp;&nbsp;Корисничко име:<input type="text" style="margin-left: 44px;"></p>
  51.         <p>&nbsp;&nbsp;&nbsp;Име и презиме:<input type="text" style="margin-left: 56px;"></p>
  52.         <p>&nbsp;&nbsp;&nbsp;Лозинка:<input type="password" style="margin-left: 100px;"></p>
  53. <p>&nbsp;&nbsp;&nbsp;Слика:<input type="file" name="img" style="margin-left: 115px;"></p>
  54. <p> &nbsp;&nbsp;&nbsp;Пол:<input type="radio" name="sex" value="zenski"> Женски<input type="radio" name="sex" value="mashki" checked>Машки</p>
  55.       <p>&nbsp;&nbsp;&nbsp;Место на живеење:
  56.         <select style="margin-left: 25px;">
  57.             <option>Скопје</option>
  58.             <option>Битола</option>
  59.             <option>Велес</option>
  60.             <option>Прилеп</option>
  61.             <option>Гевгелија</option>
  62.             <option>Друго</option>
  63.         </select>
  64. </p>
  65.   <p>&nbsp;&nbsp;&nbsp;Хоби: </p>
  66.         <select size="5" multiple="" style="margin-left:130px;" >
  67.             <option value="tenis">Тенис</option>
  68.             <option value="fudbal">Фудбал</option>
  69.             <option value="shah">Шах</option>
  70.             <option value="planinarenje">Планинарење</option>
  71.             <option value="moda">Мода</option>
  72.         </select>
  73.  
  74. </p>
  75.         <p>&nbsp;&nbsp;&nbsp;Нешто за тебе:</p>
  76.         <textarea rows="5" cols="25" style="margin-left:160px;">        </textarea>
  77.     <br>
  78.     &nbsp;&nbsp;    <input type="submit" value="Потврди">
  79. &nbsp;&nbsp;&nbsp;<input type="reset" value="Избриши">
  80.         </form>
  81.     </section>
  82.    
  83.  
  84.  
  85.  
  86. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement