Advertisement
Guest User

halp2.html

a guest
Nov 18th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. <section>
  2. <div class="highlight content" id="tabactive">
  3. <div class="shop-items">
  4. <div class="shop-item">
  5. <header>
  6. <img class="shop-item-image" src="images/notlikenoot.png">
  7. <h3 class="shop-item-title"><?php echo $qwery['nama_barang']?></h3>
  8. <br>
  9. </header>
  10. <div class="shop-item-details">
  11. <p><?php echo $qwery['info']?></p>
  12. <p class="shop-item-price">Rp.<?php echo $qwery['harga']?></p>
  13. <br>
  14. <button class="btn btn-primary shop-item-button" type="button">Add To Cart</button>
  15. </div>
  16.  
  17. </div>
  18. </div>
  19. </section>
  20.  
  21. <?php
  22.  
  23. }
  24. }
  25.  
  26. ?>
  27.  
  28.  
  29. </section>
  30. <section class="container content-section">
  31. <h2 class="section-header">CART</h2>
  32. <div class="cart-row">
  33. <span class="cart-item cart-header cart-column">ITEM</span>
  34. <span class="cart-price cart-header cart-column">PRICE</span>
  35. <span class="cart-quantity cart-header cart-column">QUANTITY</span>
  36. </div>
  37. <div class="cart-items">
  38. </div>
  39. <div class="cart-total">
  40. <strong class="cart-total-title">Total</strong>
  41. <span class="cart-total-price">Rp.</span>
  42. </div>
  43. <button class="btn btn-primary btn-purchase" type="button">Order now!</button>
  44. </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement