-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
221 lines (207 loc) · 11.5 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ODOP- Your One-Stop Shop</title>
<!-- Include Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- Include Custom CSS -->
<link rel="stylesheet" href="footer.css">
<link rel="stylesheet" href="general.css">
<link rel="stylesheet" href="header.css">
<link rel="stylesheet" href="content.css">
<link rel="stylesheet" href="hero.css">
<link rel="stylesheet" href="products.css">
<link rel="stylesheet" href="responsive.css">
<link rel="stylesheet" href="carousel.css">
<!-- Custom CSS end -->
<!-- Custom Fonts import -->
<!-- Custom Fonts import end -->
</head>
<body>
<!-- Header -->
<!-- Header -->
<header>
<!DOCTYPE html>
<html lang="en">
<head>
<!-- ... Meta tags and other head content ... -->
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="#">
<img src="thumbnails/odoplogo.jpg" alt="ODOPUP Logo" class="img-fluid">
ODOP J&K
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="https://www.india.gov.in/spotlight/one-district-one-product-odop#:~:text=The%20initiative%20aims%20to%20select,761%20districts%20across%20the%20country" target="_blank">About ODOP</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Buyer/Seller
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="https://www.amazon.in/">Amazon</a></li>
<li><a class="dropdown-item" href="https://gem.gov.in/" target="_blank">GEM Portal</a></li>
<li><a class="dropdown-item" href="https://odopup.in/en/page/mart">Mart</a></li>
<li><a class="dropdown-item" href="https://odopup.in/en/page/mart">Kashmir Box</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Products</a>
</li>
<li class="nav-item">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">Entrepreneur</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="https://www.amazon.in/">MSME Financing</a></li>
<li><a class="dropdown-item" href="https://gem.gov.in/" target="_blank">Start Up Schemes</a></li>
<li><a class="dropdown-item" href="https://odopup.in/en/page/mart">Apply for Loan</a></li>
<li><a class="dropdown-item" href="https://odopup.in/en/page/mart">Kashmir Box</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="districtwise.html">District wise product</a>
</li>
<li class="nav-item">
<a class="nav-link" href="reachus.html" target="_self">Reach us</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- ... Rest of your content ... -->
<!-- Bootstrap JS and other scripts -->
</body>
</html>
</header>
<section class="hero">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="thumbnails/hackathonimage2.jpeg" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="thumbnails/womenshawlmaker.jpg" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="thumbnails/hackathonimage3.jpeg" alt="Third slide">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</section>
<section class="about">
<div class="about-text">
<p>One District One Product (ODOP) is a government-led initiative aimed at promoting and marketing the unique and diverse products of Jammu and Kashmir. The program was launched with the goal of providing a platform for the local artisans and entrepreneurs to showcase their skills and to promote the local products. The focus of the initiative is to encourage the development of small and micro-enterprises, thereby creating job opportunities and boosting the local economy. The ODOP initiative covers a wide range of products, including traditional handicrafts, textiles, carpets, shawls, and dry fruits, among others.</p>
</div>
<div class="more-btn"><a href="https://www.india.gov.in/spotlight/one-district-one-product-odop#:~:text=The%20initiative%20aims%20to%20select,761%20districts%20across%20the%20country" target="_blank"><button>Read More -></button></a></div>
</section>
<!-- Hero Section -->
<!-- <section class="hero">
<div class="container">
<div class="hero-content text-center">
<h1>Welcome to ODOP J&K</h1>
<p>Your One-Stop Shop for Quality Products and Services</p>
<a href="#" class="btn btn-primary btn-lg">Explore Now</a>
</div>
</div>
</section> -->
<!-- Featured Products -->
<h1 class="prod-cat-title">PRODUCT CATALOGUE</h1>
<section class="featured-products">
<div class="product-container prod1">
<div class="prod-img-wrap img1"><img src="thumbnails/pashmina.jpg" alt="Pashmina" class="prod-img"></div>
<div class="prod-info info1">
<p class="prod-name">Pashmina Scarf</p>
<p class="prod-type">Clothing</p>
</div>
<div class="info-btn-cont btn1"><a href="productdescription1.html" target="_self"><button class="info-btn">More Info</button></a></div>
</div>
<div class="product-container prod2">
<div class="prod-img-wrap img2"><img src="thumbnails/saffron.jpeg" alt="Saffron" class="prod-img"></div>
<div class="prod-info info2">
<p class="prod-name">Saffron</p>
<p class="prod-type">Spice</p>
</div>
<div class="info-btn-cont btn2"><a href="productdescription2.html" target="_self"><button class="info-btn">More Info</button></a></div>
</div>
<div class="product-container prod1">
<div class="prod-img-wrap img1"><img src="thumbnails/pashmina.jpg" alt="Pashmina" class="prod-img"></div>
<div class="prod-info info1">
<p class="prod-name">Pashmina Scarf</p>
<p class="prod-type">Clothing</p>
</div>
<div class="info-btn-cont btn1"><a href="productdescription1.html" target="_self"><button class="info-btn">More Info</button></a></div>
</div>
<div class="product-container prod2">
<div class="prod-img-wrap img2"><img src="thumbnails/saffron.jpeg" alt="Saffron" class="prod-img"></div>
<div class="prod-info info2">
<p class="prod-name">Saffron</p>
<p class="prod-type">Spice</p>
</div>
<div class="info-btn-cont btn2"><a href="productdescription2.html" target="_self"><button class="info-btn">More Info</button></a></div>
</div>
<div class="product-container prod1">
<div class="prod-img-wrap img1"><img src="thumbnails/pashmina.jpg" alt="Pashmina" class="prod-img"></div>
<div class="prod-info info1">
<p class="prod-name">Pashmina Scarf</p>
<p class="prod-type">Clothing</p>
</div>
<div class="info-btn-cont btn1"><a href="productdescription1.html" target="_self"><button class="info-btn">More Info</button></a></div>
</div>
<div class="product-container prod2">
<div class="prod-img-wrap img2"><img src="thumbnails/saffron.jpeg" alt="Saffron" class="prod-img"></div>
<div class="prod-info info2">
<p class="prod-name">Saffron</p>
<p class="prod-type">Spice</p>
</div>
<div class="info-btn-cont btn2"><a href="productdescription2.html" target="_self"><button class="info-btn">More Info</button></a></div>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark text-white text-center py-3">
<div class="container">
<div class="row">
<div class="col-md-6">
<ul class="list-inline">
<li class="list-inline-item"><a href="#">Privacy Policy</a></li>
<li class="list-inline-item"><a href="#">Terms and Conditions</a></li>
</ul>
</div>
<div class="col-md-6">
<p>© 2023 ODOPUP. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>