-
Notifications
You must be signed in to change notification settings - Fork 1
/
shotoronji.html
86 lines (81 loc) · 3.16 KB
/
shotoronji.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
<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="basket.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>
<main>
<div class="photo">
<img src="shop1.jpg" alt="all">
</div>
<div class="container">
<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="shotoronji.html">Shotoronji</a>
</p>
<div class="shop" style="display: flex; align-items: center;">
<h2 style="color: rgb(119, 31, 15); margin-right: 10px;">Shotoronji</h2>
<hr>
</div>
<aside class="category-list">
<ul>
<li><a href="Allcategory.html" class="active">All Products</a></li>
<li><a href="arearug.html">Area Rug</a></li>
<li><a href="basket.html">Basket</a></li>
<li><a href="hammock.html">Hammock</a></li>
<li><a href="macrame.html">Macrame</a></li>
<li><a href="mirror.html">Mirror</a></li>
<li><a href="nakshikatha.html">Nakshikatha</a></li>
<li><a href="shotoronji.html">Shotoronji</a></li>
<li><a href="wallmate.html">Wall Mate</a></li>
</ul>
</aside>
<section class="product-list">
<div class="product-item">
<a href="shotoronji1.html">
<img src="shotoronji1.jpg" alt="Product 1" class="product-image">
</a>
<div class="product-info">
<p style="margin-top: 12;">Shotoronji</p>
<a href="shotoronji1.html">Nilambar-Shotoronji</a>
<p style="margin-top: 7; margin-bottom: 5;">1400.00৳</p>
<button>Add To Cart</button>
</div>
</div>
<div class="product-item">
<a href="shotoronji2.html">
<img src="shotoronji2.jpg" alt="Product 1" class="product-image">
</a>
<div class="product-info">
<p style="margin-top: 12;">Shotoronji</p>
<a href="shotoronji2.html">Pancharonga-Shotoronji</a>
<p style="margin-top: 7; margin-bottom: 5;">1250.00৳</p>
<button>Add To Cart</button>
</div>
</div>
</section>
</div>
</main>