-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (72 loc) · 3.29 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Cart-item</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/740c97b86d.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="container single-product">
<div class="row">
<div class="col-1">
<i class="fas fa-chevron-circle-left fa-2x"></i> <img src="11.jpg" width ="100%" ><i class="fas fa-chevron-circle-right fa-2x"></i>
<div class="small-img-row">
<div class="small-img-col">
<img src="1.jpg" width="100%">
</div>
<div class="small-img-col">
<img src="2.jpg" width="100%">
</div>
<div class="small-img-col">
<img src="4.jpg" width="100%">
</div>
<div class="small-img-col">
<img src="5.jpg" width="100%">
</div>
<div class="small-img-col">
<img src="6.jpg" width="100%">
</div>
</div>
</div>
<div class="col-2">
<h1>Upholstered Sofa</h1> <br>
<h4>Kyara Upholstered Standard Bed</h4>
<h4>by Zipcode Design</h4>
<p class="p1">Anchor your living room in sophisticated style and impeccable<br>comfort with a single addition. Perfect balancing wood<br>accents with fabrics upholstery.</p> <br>
<div class="rating">
<i class="fas fa-star"></i>
<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><span style="color:#4dd6ee">(5.0)</span> review based on 250</p>
<p class="Submit"><u>Submit review</u></p>
<h3 class="price">$567</h3>
<i class="fa fa-clock-o"></i> <small class="foot-d">Dispatched in 7 working days</small>
<div class="btn">
<button class="btn1">ADD TO CART</button>
<button class="btn2">ADD TO WISHLIST</button>
</div>
</div>
</div>
<div class="row">
<div class="col-2">
<h3> <i class="fas fa-money-check-alt"></i>Secure payment</h3>
<p class="foot"> Don't worry your money is<br>in secure places</p>
</div>
<div class="col-2">
<h3> <i class="fas fa-truck"></i></i>Fast & free delivery</h3>
<p class="foot">Home delivery $15 for free<br>
delivery order over $250</p>
</div>
<div class="col-2">
<h3> <i class="fas fa-sync"></i>Return policy</h3>
<p class="foot">No hassle return policy</p>
</div>
</div>
</div>
</body>
</html>