-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
160 lines (150 loc) · 5.94 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Visakhapatnam Crafts Marketplace</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="div">
<div class="logo">KALA KRITI</div>
<nav class="nav1">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#aboutus">About Us</a></li>
<li><a href="#shop">Shop</a></li>
<li><a href="artists.html">Artisans</a></li>
<li><a href="#footer">Contact</a></li>
<li><a href="cart.html">Cart</a></li>
<li><a href="sellerform.html">Become a Seller</a></li>
</ul>
</nav>
</div>
</header>
<section class="banner">
<div class="banner-text">
<h2>Discover Authentic Visakhapatnam Crafts - Direct from Artisans to You</h2>
<p>Authentic, Ethical, Direct</p>
</div>
</section>
<section class="featured-artisans">
<h2>Meet Our Artisans</h2>
<div class="artisans-grid">
<div class="artisan-card">
<img src="images/p1.jpg" alt="Artisan 1">
<h3>Rama Krishna</h3>
<p>A master weaver specializing in traditional Indian handloom textiles with a contemporary twist.</p>
<button><a href="p1.html">View More</a></button>
</div>
<div class="artisan-card">
<img src="images/p4.jpg" alt="Artisan 1">
<h3>Srinu</h3>
<p>An artisan dedicated to preserving old weaving techniques in his handwoven decor pieces.</p>
<button><a href="p2.html">View More</a></button>
</div>
<div class="artisan-card">
<img src="images/p3.jpg" alt="Artisan 1">
<h3>Swathi</h3>
<p>A designer creating exquisite, eco-friendly handloom textiles inspired by nature.</p>
<button><a href="p3.html">View More</a></button>
</div>
</div>
</section>
<!-- Shop by Category -->
<section class="shop-by-category" id="shop">
<h2>Explore Our Collections</h2>
<div class="categories">
<a href="hlproducts.html">
<div class="category">
<img src="images/hl1.jpg" alt="Handloom Textiles">
<h3>Handloom Textiles</h3>
</div>
</a>
<a href="hcproducts.html">
<div class="category">
<img src="images/hc2.jpeg" alt="Handicrafts">
<h3>Handicrafts</h3>
</div>
</a>
<a href="jewelry.html">
<div class="category">
<img src="images/jewelry2.jpg" alt="Jewelry">
<h3>Jewelry</h3>
</div>
</a>
<a href="decor.html">
<div class="category">
<img src="images/decor3.jpg" alt="Home Decor">
<h3>Home Decor</h3>
</div>
</a>
</div>
</section>
<!-- How It Works -->
<section class="how-it-works" id="aboutus">
<h2>How It Works</h2>
<div class="steps">
<div class="step">
<img src="images/discover.jpeg" alt="Discover Products">
<p>Discover Products</p>
</div>
<div class="step">
<img src="images/connectwithartisians.jpeg" alt="Connect with Artisans">
<p>Connect with Artisans</p>
</div>
<div class="step">
<img src="images/customize.jpeg" alt="Customize Your Order">
<p>Customize Your Order</p>
</div>
<div class="step">
<img src="images/fairprice.jpeg" alt="Enjoy Fair Prices">
<p>Enjoy Fair Prices and Unique Items</p>
</div>
</div>
</section>
<section class="customer-stories">
<h2>What Our Customers Say</h2>
<div class="testimonials">
<div class="testimonial">
<p>"Ravi Kumar's intricate table runners are a testament to true craftsmanship."</p>
<p>- Nikhil</p>
</div>
<div class="testimonial">
<p>"Anjali's vibrant handwoven throw added a beautiful touch to my living room."</p>
<p>- Keerthi</p>
</div>
<div class="testimonial">
<p>"Asha's eco-friendly handloom cushions transformed my bedroom."</p>
<p>- Lavanya</p>
</div>
</div>
</section>
<section class="artisans-contact">
<h2>Directly Connect with Artisans</h2>
<p>Have a custom request? Contact our artisans directly to personalize your order.</p>
<button><a href="artists.html">View Artisan Directory</a></button>
</section>
<footer id="footer">
<div class="footer-links">
<a href="index.html">Home</a>
<a href="#aboutus">About Us</a>
<a href="#shop">Shop</a>
<a href="artists.html">Artisans</a>
<a href="#footer">Contact</a>
<a href="cart.html">Cart</a>
</div>
<div class="newsletter">
<p>Subscribe for Updates</p>
<input type="email" placeholder="Enter your email">
<button>Subscribe</button>
</div>
<div class="contact-info">
<p>Address: 123 Street, Visakhapatnam, India</p>
<p>Email: [email protected]</p>
<p>Phone: +91 12345 67890</p>
</div>
</footer>
</body>
</html>