-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathecommerce-product-listing.html
85 lines (81 loc) · 3.15 KB
/
ecommerce-product-listing.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Material Design for Bootstrap</title>
<!-- MDB icon -->
<link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" />
<!-- Google Fonts Roboto -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" />
<!-- MDB -->
<link rel="stylesheet" href="css/bootstrap-product-cards.min.css" />
</head>
<body>
<!-- Start your project here-->
<section style="background-color: #eee;">
<div class="container py-5">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-6 col-xl-4">
<div class="card" style="border-radius: 15px;">
<div
class="bg-image hover-overlay ripple ripple-surface ripple-surface-light"
data-mdb-ripple-color="light"
>
<img
src="https://mdbcdn.b-cdn.net/img/Photos/Horizontal/E-commerce/Products/12.webp"
style="border-top-left-radius: 15px; border-top-right-radius: 15px;"
class="img-fluid"
alt="Laptop"
/>
<a href="#!">
<div class="mask"></div>
</a>
</div>
<div class="card-body pb-0">
<div class="d-flex justify-content-between">
<div>
<p><a href="#!" class="text-dark">Dell Xtreme 270</a></p>
<p class="small text-muted">Laptops</p>
</div>
<div>
<div class="d-flex flex-row justify-content-end mt-1 mb-4 text-danger">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<p class="small text-muted">Rated 4.0/5</p>
</div>
</div>
</div>
<hr class="my-0" />
<div class="card-body pb-0">
<div class="d-flex justify-content-between">
<p><a href="#!" class="text-dark">$3,999</a></p>
<p class="text-dark">#### 8787</p>
</div>
<p class="small text-muted">VISA Platinum</p>
</div>
<hr class="my-0" />
<div class="card-body">
<div class="d-flex justify-content-between align-items-center pb-2 mb-1">
<a href="#!" class="text-dark fw-bold">Cancel</a>
<button type="button" class="btn btn-primary">Buy now</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End your project here-->
<!-- MDB -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Custom scripts -->
<script type="text/javascript"></script>
</body>
</html>