Skip to content
This repository has been archived by the owner on Nov 1, 2019. It is now read-only.

Add more gifts (toys) #291

Merged
merged 1 commit into from
Oct 7, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added assets/img/gift_owl.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/gift_reindeer.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/gift_snowman.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
57 changes: 57 additions & 0 deletions pages/gifts.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,63 @@ <h4>Cat</h4>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12">
<div id="single-product" class="card">
<div class="card-body row p-0">
<div class="col-6">
<img
class="img-fluid"
data-src="../assets/img/gift_reindeer.jpg"
alt="Card image"
loading="lazy"
/>
</div>
<div class="content col-6">
<h4>Reindeer</h4>
<span>$29.99</span>
<button class="btn btn-danger"><a href="https://www.amazon.com/s?k=reindeer" style="color: white">Buy Now</a></button>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12">
<div id="single-product" class="card">
<div class="card-body row p-0">
<div class="col-6">
<img
class="img-fluid"
data-src="../assets/img/gift_snowman.jpg"
alt="Card image"
loading="lazy"
/>
</div>
<div class="content col-6">
<h4>Snowman</h4>
<span>$29.99</span>
<button class="btn btn-danger"><a href="https://www.amazon.com/s?k=snowman" style="color: white">Buy Now</a></button>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12">
<div id="single-product" class="card">
<div class="card-body row p-0">
<div class="col-6">
<img
class="img-fluid"
data-src="../assets/img/gift_owl.jpg"
alt="Card image"
loading="lazy"
/>
</div>
<div class="content col-6">
<h4>Owl</h4>
<span>$29.99</span>
<button class="btn btn-danger"><a href="https://www.amazon.com/s?k=owl" style="color: white">Buy Now</a></button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
Expand Down