Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. <!DOCTYPE html>
  2. <html lang="zxx">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  7. <meta name="description" content="" />
  8. <title>Anwi Systems</title>
  9. <!-- Favicon -->
  10. <link rel="shortcut icon" type="image/x-icon" href="./assets/img/favicon.gif" />
  11. <!--**********************************
  12. all css files
  13. *************************************-->
  14. <!--***************************************************
  15. fontawesome,bootstrap,plugins and main style css
  16. ***************************************************-->
  17. <!-- cdn links -->
  18. <link rel="stylesheet" href="assets/css/fontawesome.min.css" />
  19. <link rel="stylesheet" href="assets/css/ionicons.min.css" />
  20. <link rel="stylesheet" href="assets/css/simple-line-icons.css" />
  21. <link rel="stylesheet" href="assets/css/plugins/jquery-ui.min.css">
  22. <link rel="stylesheet" href="assets/css/bootstrap.min.css" />
  23. <link rel="stylesheet" href="assets/css/plugins/plugins.css" />
  24. <link rel="stylesheet" href="assets/css/style.min.css" />
  25. <link rel="stylesheet" href="assets/css/main-style.css" />
  26. <link rel="stylesheet" href="assets/css/responsive.css"/>
  27. <link rel="stylesheet" href="assets/css/products.css">
  28. <link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"/>
  29. <!-- Use the minified version files listed below for better performance and remove the files listed above -->
  30. </head>
  31. <body>
  32. <div class="waves">
  33. <!-- navbar -->
  34. <div id="navbar-head"></div>
  35. <!-- end-of-navbar -->
  36. <!-- breadcrumb-section start -->
  37. <section class="bg-light1">
  38. <div class="main-sliders dots-style theme1">
  39. <div class="container">
  40. <div class="row align-items-center slider-height breadcrumb">
  41. <div class="col-12">
  42. <div class="section-title text-center">
  43. <h2 class="title pb-4 text-white text-capitalize">
  44. Cart
  45. </h2>
  46. </div>
  47. </div>
  48. </div>
  49. </div>
  50. </div>
  51. </section>
  52. <!-- breadcrumb-section end -->
  53. </div>
  54. <!-- product tab start -->
  55. <section class="whish-list-section theme1 pt-80 pb-80">
  56. <div class="container">
  57. <div class="row">
  58. <div class="col-12">
  59. <h3 class="title mb-30 pb-25 text-capitalize">Your cart items</h3>
  60. <div class="table-responsive">
  61. <li class="text-center px-5 font-weight-bold text-white" scope="col">Product Image</li>
  62. <li class="text-center px-5 font-weight-bold text-white" scope="col">Product Name</li>
  63. <li class="text-center px-5 font-weight-bold text-white" scope="col">Price</li>
  64. <li class="text-center px-5 font-weight-bold text-white" scope="col">Stock Status</li>
  65. <li class="text-center px-5 font-weight-bold text-white" scope="col">Qty</li>
  66. <li class="text-center px-5 font-weight-bold text-white" scope="col">action</li>
  67. <li class="text-center px-5 font-weight-bold text-white" scope="col">Checkout</li>
  68. </ul>
  69. <ul class="list-none d-flex py-3">
  70. <li class="cart-list-items"></li>
  71. </ul> -->
  72. <table class="table ">
  73. <thead class="thead-light mob-cart">
  74. <tr>
  75. <th class="text-center" scope="col">Product Image</th>
  76. <th class="text-center" scope="col">Product Name</th>
  77. <th class="text-center" scope="col">Price</th>
  78. <th class="text-center" scope="col">Stock Status</th>
  79. <th class="text-center" scope="col">Qty</th>
  80. <th class="text-center" scope="col">action</th>
  81. <th class="text-center" scope="col">Checkout</th>
  82. </tr>
  83. </thead>
  84. <tbody class="product-tbody mob-cart">
  85. <th class="text-center" scope="row">
  86. <img src="assets/img/product/4.png" alt="img" />
  87. </th>
  88. <td class="text-center">
  89. <span class="whish-title">Originals Kaval nail polish</span>
  90. </td>
  91. <td class="text-center">
  92. <span class="badge badge-danger position-static"
  93. >In Stock</span
  94. >
  95. </td>
  96. <td class="text-center">
  97. <div class="product-count style">
  98. <div class="count d-flex justify-content-center">
  99. <input
  100. type="number"
  101. min="1"
  102. max="10"
  103. step="1"
  104. value="1"
  105. />
  106. <div class="button-group">
  107. <button class="count-btn increment">
  108. <i class="fas fa-chevron-up"></i>
  109. </button>
  110. <button class="count-btn decrement">
  111. <i class="fas fa-chevron-down"></i>
  112. </button>
  113. </div>
  114. </div>
  115. </div>
  116. </td>
  117. <td class="text-center">
  118. <span class="whish-list-price"> $38.24 </span>
  119. </td>
  120. <td class="text-center">
  121. <a href="#">
  122. <span class="trash"><i class="fas fa-trash-alt"></i> </span
  123. ></a>
  124. </td>
  125. <td class="text-center">
  126. <a href="#" class="btn btn-dark btn--lg">add to cart</a>
  127. </td>
  128. </tr>
  129. <tr>
  130. <th class="text-center" scope="row">
  131. <img src="assets/img/product/6.png" alt="img" />
  132. </th>
  133. <td class="text-center">
  134. <span class="whish-title">New Balance Arish makeup box</span>
  135. </td>
  136. <td class="text-center">
  137. <span class="badge badge-danger position-static"
  138. >In Stock</span
  139. >
  140. </td>
  141. <td class="text-center">
  142. <div class="product-count style">
  143. <div class="count d-flex justify-content-center">
  144. <input
  145. type="number"
  146. min="1"
  147. max="10"
  148. step="1"
  149. value="1"
  150. />
  151. <div class="button-group">
  152. <button class="count-btn increment">
  153. <i class="fas fa-chevron-up"></i>
  154. </button>
  155. <button class="count-btn decrement">
  156. <i class="fas fa-chevron-down"></i>
  157. </button>
  158. </div>
  159. </div>
  160. </div>
  161. </td>
  162. <td class="text-center">
  163. <span class="whish-list-price"> $38.24 </span>
  164. </td>
  165. <td class="text-center">
  166. <a href="#">
  167. <span class="trash"><i class="fas fa-trash-alt"></i> </span
  168. ></a>
  169. </td>
  170. <td class="text-center">
  171. <a href="#" class="btn btn-dark btn--lg">add to cart</a>
  172. </td>
  173. </tr> -->
  174. </tbody>
  175. </table>
  176. <div id="mob-res-cart">
  177. </div>
  178. </div>
  179. </div>
  180. </div>
  181. </div>
  182. </section>
  183. <!-- product tab end -->
  184. <div class="check-out-section pb-80">
  185. <div class="container">
  186. <div class="row">
  187. <div class="col-lg-7">
  188. <div class="billing-info-wrap">
  189. <h3 class="title">calculate shipping</h3>
  190. <form class="personal-information" action="./assets/php/contact.php">
  191. <div class="row">
  192. <div class="col-lg-6 col-md-6">
  193. <div class="billing-select mb-20px">
  194. <select id="inputState" class="form-select mb-3">
  195. <option>Select country</option>
  196. <option>Azerbaijan</option>
  197. <option>Bahamas</option>
  198. <option>Bahrain</option>
  199. <option>Bangladesh</option>
  200. <option>Barbados</option>
  201. </select>
  202. </div>
  203. </div>
  204. <div class="col-lg-6 col-md-6">
  205. <div class="billing-select mb-20px">
  206. <select id="inputState2" class="form-select mb-3">
  207. <option>Select State</option>
  208. <option>Azerbaijan</option>
  209. <option>Bahamas</option>
  210. <option>Bahrain</option>
  211. <option>Bangladesh</option>
  212. <option>Barbados</option>
  213. </select>
  214. </div>
  215. </div>
  216. <div class="col-lg-6">
  217. <div class="billing-info mb-20px">
  218. <input placeholder="Postcode / ZIP" type="text" />
  219. </div>
  220. </div>
  221. <div class="col-lg-6">
  222. <div class="billing-select mb-20px">
  223. <a href="#" class="btn btn-primary check-out-btn">estimate</a>
  224. </div>
  225. </div>
  226. <div class="col-12">
  227. <h3 class="coupon-title">Discount coupon Code</h3>
  228. </div>
  229. <div class="col-lg-6 col-md-6">
  230. <div class="billing-info mb-20px">
  231. <input placeholder="coupon Code" type="text" />
  232. </div>
  233. </div>
  234. <div class="col-lg-6 col-md-6">
  235. <a href="#" class="btn btn-primary check-out-btn">apply code</a>
  236. </div>
  237. </div>
  238. </form>
  239. </div>
  240. </div>
  241. <div class="col-lg-5 mt-4 mt-lg-0">
  242. <div class="your-order-area">
  243. <div class="your-order-wrap gray-bg-4">
  244. <div class="your-order-product-info">
  245. <div class="your-order-top">
  246. <ul>
  247. <li>Product</li>
  248. <li>Total</li>
  249. </ul>
  250. </div>
  251. <div class="your-order-bottom">
  252. <ul>
  253. <li class="your-order-shipping">Shipping</li>
  254. <li>Free shipping</li>
  255. </ul>
  256. </div>
  257. <div class="your-order-total mb-0">
  258. <ul>
  259. <li class="order-total">Total</li>
  260. <li>$329</li>
  261. </ul>
  262. </div>
  263. </div>
  264. </div>
  265. <div class="Place-order mt-25">
  266. <a class="btn btn--lg btn-primary me-3" href="#">update cart</a>
  267. <a class="btn btn--lg btn-primary my-2 my-sm-0" href="#">checkout</a>
  268. </div>
  269. </div>
  270. </div>
  271. </div>
  272. </div>
  273. </div>
  274. <!-- footer strat -->
  275. <div id="footer-head"></div>
  276. <!-- footer end -->
  277. <!--***********************
  278. all js files
  279. ***********************-->
  280. <!--******************************************************
  281. jquery,modernizr ,poppe,bootstrap,plugins and main js
  282. ******************************************************-->
  283. <script src="assets/js/vendor/jquery-3.6.0.min.js"></script>
  284. <script src="assets/js/vendor/jquery-migrate-3.3.2.min.js"></script>
  285. <script src="assets/js/vendor/modernizr-3.7.1.min.js"></script>
  286. <script src="assets/js/plugins/jquery-ui.min.js"></script>
  287. <script src="assets/js/bootstrap.bundle.min.js"></script>
  288. <script src="assets/js/plugins/plugins.js"></script>
  289. <script src="assets/js/plugins/ajax-contact.js"></script>
  290. <script src="assets/js/main.js"></script>
  291. <script src="assets/js/scroll.js"></script>
  292. <script src="assets/js/cart.js"></script>
  293. <!-- navbar-js -->
  294. <script src="assets/js/navbar.js"></script>
  295. <!-- footer-js -->
  296. <script src="assets/js/footer.js"></script>
  297. </body>
  298. </html>