-
Notifications
You must be signed in to change notification settings - Fork 1
/
basket1.html
168 lines (54 loc) · 3.77 KB
/
basket1.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dyuti - Home</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
<link rel="stylesheet" href="basket4.css">
</head>
<body>
<header class="header">
<div class="logo">
<img src="Dyuti.PNG" alt="Dyuti Logo">
</div>
<nav class="navbar">
<ul class="nav-menu">
<li class="menu-item"><a href="index.html">Home</a></li>
<li class="menu-item"><a href="About Us.html">About Us</a></li>
<li class="menu-item"><a href="Allcategory.html">Shop</a></li>
<li class="menu-item dropdown">
<a href="signup.html" class="dropdown-toggle"><i class="fas fa-user"></i></a>
<ul class="dropdown-menu">
</ul>
</li>
<li class="menu-item"><a href="#"><i class="fas fa-shopping-cart"></i></a></li>
</ul>
</nav>
</header>
<br>
<div class="small-container single-product">
<div class="row">
<div class="col-2">
<img src="basket1.jpg">
<p>"A striped woven jute basket infuses your space with earthy warmth and organic charm. Wall
whimsical or sophisticated stripes, it's a beautiful and practical addition, bringing nature's texture and warmth into your home."</p>
</div>
<div class="col-2">
<div class="right">
<p><a style="color: #6c6a6a; font-size: medium; text-decoration: none;" href="index.html">Home</a>
/
<a style="color: #6c6a6a; font-size: medium; text-decoration: none;" href="basket.html">Basket</a>
/
<a style="color: #6c6a6a; font-size: medium; text-decoration: none;" href="basket1.html">Striped Woven Jute Basket</a></p>
<h1 style="color: rgb(119, 31, 15); text-size:24px;">Striped Woven Jute Basket</h1>
<div class="right2">
<h4>800.00৳-1000.00৳</h4>
<input type = "number" value="1" min="1">
<button>Add To Cart</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>