-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrugs.html
More file actions
73 lines (67 loc) · 2.73 KB
/
Copy pathrugs.html
File metadata and controls
73 lines (67 loc) · 2.73 KB
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
<!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>Document</title>
<style>
#furbox>div{
display: inline-block;
margin: 10px;
justify-content: right;
}
body{
background-color: antiquewhite;
}
#cart {
background-color: red;
color: white;
padding: 1em 1.5em;
text-decoration: none;
text-transform: uppercase;
}
</style>
</head>
<body>
<a href="cart.html" id="cart">Go To Cart</a>
<h1>Products</h1>
<div id="furbox">
<div>
<a href="rfirst.html">
<img src="https://ak1.ostkcdn.com/images/products/is/images/direct/fa0de7e5f6db966631851fdd3f058a6b965ff170/SAFAVIEH-California-Shag-Izat-2-inch-Thick-Rug.jpg?imwidth=480&impolicy=medium" alt="">
<h3>Sale Starts At INR 2950.55</h3>
<span style="font-size: large; color:yellow;">★★★★ </span>34.1K
</a>
</div>
<div>
<a href="rsecond.html">
<img src="https://ak1.ostkcdn.com/images/products/is/images/direct/57e55b6b50af4de47b5b254913333668cb30dec4/SAFAVIEH-Adirondack-Vera-Modern-Ombre-Distressed-Stripe-Area-Rug.jpg?imwidth=480&impolicy=medium" alt="">
<h3>Sale Starts At INR 2226.26</h3>
<span style="font-size: large; color:yellow;">★★★★ </span>7.1K
</a>
</div>
<div>
<a href="rthird.html">
<img src="https://ak1.ostkcdn.com/images/products/is/images/direct/709fee12c5b7e2b834fe98b74814982b8b9a1d15/SAFAVIEH-Madison-Diederike-Boho-Medallion-Distressed-Rug.jpg?imwidth=480&impolicy=medium" alt="">
<h3>Sale Starts At INR 1996.23</h3>
<span style="font-size: large; color:yellow;">★★★★★ </span>2.1K
</a>
</div>
<div>
<a href="rfourth.html">
<img src="https://ak1.ostkcdn.com/images/products/is/images/direct/6f2f4c20d2f89bed074d54fbdf2ad920533a8657/SAFAVIEH-Vision-Tanasa-Modern-Ombre-Tonal-Rug.jpg?imwidth=480&impolicy=medium" alt="">
<h3>Sale Starts At INR 2267.97</h3>
<span style="font-size: large; color:yellow;">★★★★★ </span>6.3K
</a>
</div>
<div>
<a href="rfifth.html">
<img src="https://ak1.ostkcdn.com/images/products/is/images/direct/4ac5f7c2f2af9b4ee23f50f8d1d82dcaaf09e61a/Elmas-Traditional-Persian-Medallion-Area-Rug.jpg?imwidth=480&impolicy=medium" alt="">
<h3>Sale Starts At INR 4300.43</h3>
<span style="font-size: large; color:yellow;">★★★★★ </span>1.5K
</a>
</div>
</div>
</body>
</html>