Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.23 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
  8. <title>Frizerski salon Mirko</title>
  9. <!-- Bootstrap CSS -->
  10. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
  11. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
  12. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
  13. </head>
  14.  
  15. <div class="container-fluid">
  16. <body>
  17. <nav class="navbar navbar-inverse navbar-fixed-top">
  18. <div class="container-fluid">
  19. <div class="navbar-header">
  20. <a class="navbar-brand" href="#">Frizerski salon Mirko</a>
  21. </div>
  22. <ul class="nav navbar-nav navbar-right">
  23. <ul class="nav navbar-nav">
  24. <li class="active"><a href="#">Kaj nudimo</a></li>
  25. <li><a href="#">Naroči se</a></li>
  26. <li><a href="#">FAQ</a></li>
  27. <li><a href="#">O nas</a></li>
  28. </ul>
  29. <form class="navbar-form navbar-left">
  30. <div class="form-group">
  31. <input type="text" class="form-control" placeholder="Iskanje">
  32. </div>
  33. <button type="submit" class="btn btn-default">Išči</button>
  34. </form>
  35. </ul>
  36.  
  37. </div>
  38. </nav>
  39.  
  40. <!--Tole je če želiš imet prazen prostor med div-i-->
  41. <div class="col-sm-12" style="height:100px;"></div>
  42. <!--#-->
  43.  
  44.  
  45. <div class="container-fluid">
  46. <h1 class="text-center">Kaj nudimo</h1>
  47. <div class="row">
  48. <div class="col-sm-4 text-center" style="background-color:grey;">
  49. <p>Nega las</p>
  50. <img class= "img-responsive" src="http://www.dalejamessalonperth.com.au/wp-content/uploads/2015/11/wethaortreatment.jpg">
  51. <div class="col-sm-12" style="height:10px;"></div>
  52. </div>
  53. <div class="col-sm-4 text-center" style="background-color:grey;">
  54. <p>Barvanje</p>
  55. <img class="img-responsive" src="https://media.mnn.com/assets/images/2015/03/HairDyeingPregnancy-m-0303.jpg.653x0_q80_crop-smart.jpg">
  56. <div class="col-sm-12" style="height:10px;"></div>
  57. </div>
  58. <div class="col-sm-4 text-center" style="background-color:grey;">
  59. <p>Striženje</p>
  60. <img class="img-responsive" src="http://cdn2.bigcommerce.com/server400/663bb/product_images/uploaded_images/hair-cutting.jpg?t=1426283571">
  61. </div>
  62. </div>
  63. </div>
  64.  
  65. <div class="col-sm-12" style="height:10px;"></div>
  66.  
  67. <div class="container-fluid">
  68. <h1 class="text-center">Naročite se</h1>
  69. <div class="row">
  70. <div class="col-sm-6 text-center" style="background-color:grey;">
  71. <form>
  72. <div class="form-group">
  73. <div class="col-xs-12" style="height:20px;"></div>
  74. <input type="text" class="form-control" id="formGroupExampleInput" placeholder="Ime, Priimek">
  75. </div>
  76. <div class="form-group">
  77. <input type="text" class="form-control" id="formGroupExampleInput2" placeholder="Telefonska številka">
  78. </div>
  79. <div class="form-group">
  80. <input type="text" class="form-control" id="formGroupExampleInput" placeholder="Termin">
  81. </div>
  82. <div class="form-group">
  83. <input type="text" class="form-control" id="formGroupExampleInput" placeholder="Opombe">
  84. </div>
  85.  
  86. <div class="form-check">
  87. <label class="form-check-label">
  88. <input class="form-check-input" type="checkbox" id="blankCheckbox" value="option1" aria-label="...">
  89. <p>Strinjam se, da je Mirko najboljši frizer</p>
  90. </label>
  91. </div>
  92.  
  93. </form>
  94. </div>
  95.  
  96. <div class="col-sm-6" style="background-color:grey;">
  97. <div class="col-sm-12" style="height:20px;"></div>
  98. <table class="table table-bordered">
  99. <thead>
  100. <tr>
  101. <th>DAN</th>
  102. <th>DELOVNE URE</th>
  103. </tr>
  104. </thead>
  105. <tbody>
  106. <tr>
  107. <td>PON</td>
  108. <td>8.00-18.00</td>
  109. </tr>
  110. <tr>
  111. <td>TOR</td>
  112. <td>8.00-18.00</td>
  113. </tr>
  114. <tr>
  115. <td>SRE</td>
  116. <td>8.00-18.00</td>
  117. </tr>
  118. <tr>
  119. <td>ČET</td>
  120. <td>8.00-18.00</td>
  121. </tr>
  122. <tr>
  123. <td>PET</td>
  124. <td>8.00-18.00</td>
  125. </tr>
  126. <tr>
  127. <td>SOB</td>
  128. <td>po dogovoru</td>
  129. </tr>
  130. <tr>
  131. <td>NED</td>
  132. <td>zaprto</td>
  133. </tr>
  134. </tbody>
  135. </table>
  136.  
  137. <div class="form-check text-center">
  138. <label class="form-check-label">
  139. <input class="form-check-input" type="checkbox" id="blankCheckbox" value="option1" aria-label="...">
  140. <p>Ob praznikih velja nedeljski urnik</p>
  141. </label>
  142. </div>
  143.  
  144. </div>
  145. </div>
  146.  
  147. </div>
  148.  
  149. <div class="col-sm-12" style="height:30px;"></div>
  150.  
  151. <div class="container-fluid">
  152. <div class="card text-center">
  153. <div class="card-header">
  154. <h1 class="center-text">FAQ</h1>
  155. </div>
  156. <div class="card-body">
  157. <h4 class="card-title">Kakšen je salon in ekipa?</h4>
  158. <p class="card-text">Ekipa je profesionalna, natačna in upošteva želje strank.</p>
  159. </div>
  160.  
  161. <div class="card-body">
  162. <h4 class="card-title">Ali sprejemate hišne ljubljenčke?</h4>
  163. </div>
  164.  
  165. <div class="card-body">
  166. <h4 class="card-title">Ali imate kakšno priznanje?</h4>
  167. </div>
  168. </div>
  169.  
  170. <div>
  171. <div class="col-sm-12" style="height:10px;"></div>
  172.  
  173. <div class="container-fluid" style="background-color:grey;">
  174. <h1 class="text-center">Kontakt</h1>
  175. <div class="col-sm-6 text-left">
  176. <ul>Frizer Mirko s.p.</ul>
  177. <ul>Davčna: 2037457867957</ul>
  178. <ul>Naslov: Slovenska cesta 22</ul>
  179. <ul>Telefon: 031 356 389</ul>
  180. <ul>Email: frizer.mirko@gmail.com</ul>
  181. </div>
  182. <div class="col-sm-6 text-right text-right">
  183. <div class="btn-group-vertical">
  184. <ul>Kaj nudimo</ul>
  185. <ul>Naroči se</ul>
  186. <ul>Pogosta vprašanja</ul>
  187. <ul>O nas</ul>
  188. </div>
  189. </div>
  190. </div>
  191.  
  192. </div>
  193.  
  194. </div>
  195. </div>
  196.  
  197. </div>
  198. </div>
  199.  
  200. </body>
  201. </div>
  202. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement