HTML MARKUP
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
<div class="ct-productItem"> <div class="row"> <div class="col-md-2"> <div class="ct-productItem-image"> <a href="shop-single-product.html"> <img src="../path/to/shopProduct" alt="Shop product"> </a> </div> </div> <div class="col-md-10"> <div class="ct-productItem-content"> <h6 class="ct-productItem-name"> <a href="shop-single-product">I'm Bob T-Shirt</a> </h6> <div class="ct-productItem-description"> This classic silhouette is an affordable alternative heavyweight t-shirt for the value-conscious consumer. </div> <div class="ct-u-paddingTop10 ct-u-paddingBottom15"> <span class="ct-productItem-price ct-u-colorPrimary">$25.00</span> </div> <a href="shop-single-product.html" class="btn btn-primary btn-xs text-uppercase">Buy now</a> </div> </div> </div> </div> |