-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (58 loc) · 1.9 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Product Card</title>
<link rel="stylesheet" href="./css/styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<div class="container">
<div class="card">
<div class="product-img"></div>
<div class="product-detail">
<span> Product Name </span>
<div class="rating">
<i class="fa fa-star s5"></i>
<i class="fa fa-star s4"></i>
<i class="fa fa-star s3"></i>
<i class="fa fa-star s2"></i>
<i class="fa fa-star s1"></i>
</div>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa
aliquam qui odit
</p>
<div class="buttons">
<div class="price">Rs. 5,000</div>
<div class="buttns">
<button class="cart btn">
<i class="fa fa-plus"></i> Add to cart
</button>
<button class="favourite btn">
<lord-icon
src="https://cdn.lordicon.com/xryjrepg.json"
trigger="hover"
colors="primary:#e83a30"
style="
text-align: center;
align-items: center;
justify-content: center;
margin-top: 4px;
"
>
</lord-icon>
</button>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="https://cdn.lordicon.com/qjzruarw.js"></script>
</html>