-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
447 lines (418 loc) · 16.2 KB
/
blog.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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
<!DOCTYPE html>
<html lang="en">
<head>
<!-- +++++++++++++++++++++++++++++++About page+++++++++++++++++++++++++++++++++++++ -->
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<title>Bd Jute Craft</title>
<link rel="shortcut icon" type="img/png" href="img/fevjute.png" />
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body id="error">
<!--+++++++++++++++++++++++++++++++++++++ Header Part Start +++++++++++++++++++++++++++++ -->
<header>
<!-- nav info header -->
<section id="info_head">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="info_head">
<ul class="d-inline">
<li class="d-inline-block">
<i class="fa fa-phone"></i> Hotline:
<a href="#">(+91) 9874567847</a>
</li>
<li class="d-inline-block">
<i class="fas fa-envelope-open"></i>online
<a href="#"
>info.sarainternational@gmail.com, sales@saraexim.in</a
>
</li>
</ul>
<ul class="d-inline" style="margin-left: 453px;">
<li class="d-inline-block">Google Languge</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- nav info header end -->
<!-- main nav start -->
<nav class="navbar navbar-expand-lg navbar-light nav_main py-5">
<div class="container">
<a class="navbar-brand" href="#"
><img src="img/logo/Bd-Jute-craft-Logo4.png" alt="Logo" class="w-75"
/></a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-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 ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html"
>Home <span class="sr-only">(current)</span></a
>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="product.html">PRODUCTS</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="blog.html">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="csr.html">CSR</a>
</li>
<li class="nav-item">
<a class="nav-link" href="factory.html">Factory</a>
</li>
<li class="nav-item">
<a class="nav-link" href="faq.html">FAQ’S</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contuct.html">CONTACT US</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- nav end -->
</header>
<!--+++++++++++++++++++++++++++++++++++++ Header Part End+++++++++++++++++++++++++++++ -->
<!--+++++++++++++++++++++++++++++++++++++ space Blog+++++++++++++++++++++++++++++ -->
<section id="abt_space">
<div class="container">
<div class="row">
<div class="col-md-12">
<p class="text-muted">Homepage / <span>blog</span></p>
</div>
</div>
</div>
</section>
<!--+++++++++++++++++++++++++++++++++++++ space Blog End+++++++++++++++++++++++++++++ -->
<!--+++++++++++++++++++++++++++++++++++++ blog containt+++++++++++++++++++++++++++++ -->
<section id="blog_cont" class="py-5">
<div class="container">
<div class="row">
<div class="col-md-3">
<!-- search part -->
<div class="blog_con">
<strong class="text-uppercase searc_blog d-block">Search</strong>
<form class="form-group pt-2 search_btn">
<input type="text" name="" class="form-control " value="" />
<div class="serc_icon">
<i class="far fa-search"></i>
</div>
</form>
</div>
<!-- ccatagory part -->
<div class="blog_cat pt-3">
<strong class="text-uppercase searc_blog d-block"
>CATEGORIES</strong
>
</div>
<!-- vartical catagory -->
<nav class="nav flex-column pt-3" id="side_nav">
<a class="nav-link active" href="#">Bags</a>
<a class="nav-link" href="#">Cotton Canvas Bags</a>
<a class="nav-link" href="#">equal pay</a>
<a class="nav-link" href="#">Juco Bags</a>
<a class="nav-link" href="#">Jute Bag Manufacturers</a>
<a class="nav-link" href="#">Jute Bag Suppliers</a>
<a class="nav-link" href="#">Jute bags</a>
<a class="nav-link" href="#">Jute Bags Exporters</a>
<a class="nav-link" href="#">jute wine bag</a>
<a class="nav-link" href="#">Leather Bags</a>
<a class="nav-link" href="#">Printing Jute Bags</a>
<a class="nav-link" href="#">Uncategorized</a>
</nav>
<!-- nav end vartically -->
<!-- recent post -->
<div class="blog_cat pt-3">
<strong class="text-uppercase searc_blog d-block"
>POPULAR POST</strong
>
<div class="post_cont">
<p>Digital Printed Jute bags</p>
<a href="#">Saket Agarwal</a>
<img
width="233"
height="133"
src="img/blog/recent1.jpg"
class="recent_img"
alt=""
sizes="(max-width: 1280px) 100vw, 1280px"
/>
</div>
<div class="post_cont pb-1">
<p>Cotton Bags are in Trend</p>
<a href="#">sadhak mandal</a>
<img
width="233"
height="133"
src="img/blog/22_09.jpg"
class="recent_img"
alt=""
sizes="(max-width: 1280px) 100vw, 1280px"
/>
</div>
</div>
</div>
<div class="col-md-9">
<div class="blog_maincon">
<p style="font-size: 40px;font-weight: 400;">
Digital Printed Jute bags
</p>
<!-- comment section -->
<div class="post-meta">
<span>
<a href="#" class="text-muted"
><i class="fa fa-calendar"> </i> June 28, 2018</a
>
</span>
<span>
<a href="#" class="text-muted"><i class="fa fa-user"></i> </a>
<a
href="#"
class="text-muted"
title="Posts by Saket Agarwal"
rel="author"
>Saket Agarwal</a
>
</span>
<span>
<a href="#" class="text-muted"
><i class="fa fa-comments"></i> 0 Comments</a
>
</span>
</div>
<div class="blog_pera pt-2">
<p class="text-muted">
Sara International is a pioneer in making Digital Printed Jute
bags. Over a period of time screen printing has been done of
Jute hand bags and shopping bags. But there has not been
improvement is printing what we like. For this reason we have
pioneered the art of making digitally printed bags that c
[...]
</p>
<button type="button" class="btn_black mt-4 mb-5" name="button">
READ MORE
</button>
<hr />
</div>
</div>
<!-- blog 2 -->
<div class="blog_maincon">
<p style="font-size: 40px;font-weight: 400;">
Digital Printed Jute bags
</p>
<!-- comment section -->
<div class="post-meta">
<span>
<a href="#" class="text-muted"
><i class="fa fa-calendar"> </i> June 28, 2018</a
>
</span>
<span>
<a href="#" class="text-muted"><i class="fa fa-user"></i> </a>
<a
href="#"
class="text-muted"
title="Posts by Saket Agarwal"
rel="author"
>Saket Agarwal</a
>
</span>
<span>
<a href="#" class="text-muted"
><i class="fa fa-comments"></i> 0 Comments</a
>
</span>
</div>
<div class="blog_images">
<img src="img/blog/23_08.jpg" class="w-100" alt="" />
</div>
<div class="blog_pera pt-2">
<p class="text-muted">
Sara International is a pioneer in making Digital Printed Jute
bags. Over a period of time screen printing has been done of
Jute hand bags and shopping bags. But there has not been
improvement is printing what we like. For this reason we have
pioneered the art of making digitally printed bags that c
[...]
</p>
<button type="button" class="btn_black mt-4 mb-5" name="button">
READ MORE
</button>
<hr />
</div>
</div>
<!-- blog 3 -->
<div class="blog_maincon">
<p style="font-size: 40px;font-weight: 400;">
Digital Printed Jute bags
</p>
<!-- comment section -->
<div class="post-meta">
<span>
<a href="#" class="text-muted"
><i class="fa fa-calendar"> </i> June 28, 2018</a
>
</span>
<span>
<a href="#" class="text-muted"><i class="fa fa-user"></i> </a>
<a
href="#"
class="text-muted"
title="Posts by Saket Agarwal"
rel="author"
>Saket Agarwal</a
>
</span>
<span>
<a href="#" class="text-muted"
><i class="fa fa-comments"></i> 0 Comments</a
>
</span>
</div>
<div class="blog_images">
<img src="img/blog/28_7_blog.jpg" class="w-100" alt="" />
</div>
<div class="blog_pera pt-2">
<p class="text-muted">
Sara International is a pioneer in making Digital Printed Jute
bags. Over a period of time screen printing has been done of
Jute hand bags and shopping bags. But there has not been
improvement is printing what we like. For this reason we have
pioneered the art of making digitally printed bags that c
[...]
</p>
<button type="button" class="btn_black mt-4 mb-5" name="button">
READ MORE
</button>
<hr />
</div>
</div>
</div>
</div>
</div>
</section>
<!-- +++++++++++++++++++++++++++++++++++++Footer Part Start+++++++++++++++++++++++++++++++++++++++++++++ -->
<footer id="footer" style="background: #222; padding-top: 50px;">
<div class="container">
<div class="row">
<div class="col-md-3">
<h5 class="text-white pb-4">ABOUT STORE</h5>
<img
src="img/logo/Bd-Jute-craft-Logo4.png"
alt="logo"
class="w-100"
/>
<p class="text-muted pt-4">
Sara International is ISO 9001:2008 certified leading
manufacturer, exporter and supplier of Bags made of Cotton, Jute
and organic fabrics. After years of hard work and constant
attention to customers, we are one of the providers of high
quality and 100% eco-friendly jute and cotton bags/ accessories
</p>
<hr />
<div class="footer_icon">
<ul>
<li>
<a href="#"><i class="fab fa-facebook"></i></a>
</li>
<li>
<a href="#"><i class="fab fa-twitter"></i></a>
</li>
<li>
<a href="#"><i class="fab fa-google-plus"></i></a>
</li>
<li>
<a href="#"><i class="fab fa-pinterest"></i></a>
</li>
<li>
<a href="#"><i class="fab fa-linkedin"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-md-3">
<h5 class="text-white">LATEST TWEETS</h5>
<span class="text-muted"> no twitt availabale</span>
</div>
<div class="col-md-3">
<h5 class="text-white">PRODUCT TAGS</h5>
</div>
<div class="col-md-3">
<h5 class="text-white">NEWSLETTER</h5>
<form action="">
<div class="form-group">
<small class="pb-3 text-white"
>Sign up for our newsletter and promotions</small
>
<input
type="text"
class="form-control btn-dark"
placeholder="enter your male or adress"
/>
<button class="btn btn-primary mt-4">Submited!</button>
</div>
</form>
</div>
</div>
</div>
<div class="col-md-12 text-center py-5" style="background: #1E1E1E">
<p class="text-muted">
Copyright 2020 · Designed & Developed by
<a href="gatway.com">Getway solution</a> All rights reserved
</p>
</div>
</footer>
<!-- +++++++++++++++++++++++++++++++++++++Footer Part End+++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="js/jquery-1.12.4.min.js" charset="utf-8"></script>
<script src="js/bootstrap.min.js" charset="utf-8"></script>
<script src="js/popper.min.js" charset="utf-8"></script>
<script
src="https://code.jquery.com/jquery-1.12.4.min.js"
integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ="
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"
></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"
></script>
<script src="js/1d0f4368c3.js"></script>
<!-- javascript end -->
</body>
</html>