-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
714 lines (538 loc) · 26.7 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
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
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>complete responsive farmer</title>
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css" />
<!-- custom css file link -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- header section starts -->
<header class="header">
<a href="#" class="logo"> <img class="logo1" src="https://cdn.iconscout.com/icon/free/png-256/farmer-2204210-1838555.png" alt=""> Farmer Portal </a>
<nav class="navbar">
<div id="nav-close" class="fas fa-times"></div>
<a href="#home">home</a>
<a href="#category">Crops</a>
<a href="2.html">Machinery</a>
<a href="#packages">Farming Tools</a>
<div class="dropdown">
<button class="dropbtn">Links</button>
<div class="dropdown-content">
<a href="#">Feedback portal</a>
<a href="#">Expert Session</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Change Language</button>
<div class="dropdown-content">
<a href="hindiindex.html">Hindi</a>
<a href="index.html">English</a>
<a href="gharwaliindex.html">Garhwali</a>
<a href="punjabiindex.html">Punjabi</a>
</div>
</div>
</nav>
<div class="icons">
<div id="menu-btn" class="fas fa-bars"></div>
<div id="search-btn" class="fas fa-search"></div>
</div>
</header>
<!-- header section ends -->
<!-- search form -->
<div class="search-form">
<div id="close-search" class="fas fa-times"></div>
<form action="">
<input type="search" name="" placeholder="search here..." id="search-box">
<label for="search-box" class="fas fa-search"></label>
</form>
</div>
<!-- home section starts -->
<section class="home" id="home">
<div class="swiper home-slider">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="box" style="background: url('https://cdn.pixabay.com/photo/2020/03/03/03/56/farmers-4897451_1280.jpg') no-repeat;">
<div class="content">
<span>never stop</span>
<h3>Farming</h3>
<p>Agriculture is our wisest pursuit, because it will in the end contribute most to real wealth, good morals, and happiness</p>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="box second" style="background: url('https://cdn.pixabay.com/photo/2020/07/23/01/09/field-5430070_1280.jpg') no-repeat;">
<div class="content">
<span>never stop</span>
<h3>farming</h3>
<p>Let us not forget that the cultivation of the earth is the most important labor of man. When tillage begins, other arts follow. The farmers, therefore, are the founders of human civilization.</p>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="box" style="background: url('https://cdn.pixabay.com/photo/2020/03/15/13/19/lotus-flowers-4933604_1280.jpg') no-repeat;">
<div class="content">
<span>never stop</span>
<h3>Farming</h3>
<p>If a farmer fills his barn with grain, he gets mice. If he leaves it empty, he gets actors.</p>
</div>
</div>
</div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
</section>
<!-- home section ends -->
<!-- introduction part start here....... -->
<div class="introduction">
<div class="agri" >
<div class="tophead">
<img class="bharat-logo " src="https://images.indianexpress.com/2015/04/emblem.jpg" alt="" srcset="">
<h3 id="sub-top" class="sub-top-head">
GOVERNMENT OF INDIA
Ministry of Agriculture
</h3>
<p class="sub-top-head">
Department of Agriculture & Cooperation
Mechanisation & Technology Division
</p>
</div>
<div class="downhead">
<ol id="list-uttra">
<li><a href="1.html"> 1.Introduction</a></li>
<li><a href="2.html">
2. Suggested Agricultural Machinery and Equipment for Different Cropping Patterns</a></li>
<li><a href="3.html">
3. Land Development Equipment</a></li>
<li><a href="4.html"> 4.Tillage Implements</a></li>
<li><a href="5.html">
5. Sowing Equipment</a></li>
<li><a href="6.html">
6.Interculture Equipment</a></li>
<li><a href="7.html"> 7.Plant Protection Equipment</a></li>
<li><a href="8.html"> 8.Harvesting Equipment</a></li>
<li><a href="9.html"> 9.Threshing Equipment</a></li>
<li><a href="10.html"> 10.List of Agriculture Machinery and Equipment Manufacturers</a></li>
<li><a href="11.html"> 11.Government of India Initiatives for promotion of Agricultural Mechanisation</a></li>
<li><a href="12.html">12.Pattern of Maximum Permissible Assistance for Farm Mechanization</a>
</li>
</ol>
</div>
</div>
<div class="agri-content">
<div class="gov">
<h2 href="#" class="logo2">Goverment of Uttrakhand</h2>
<h2 href="#" class="logo2">FARMERS GUIDE</h2>
<img class="uttra" src="uttra.jpeg" alt="" srcset="">
</div>
</div>
</div>
<!-- introduction part end here..... -->
<!-- category section starts -->
<section class="category" id="category">
<h1 class="heading">
Major crops </h1>
<div class="box-container">
<div class="box">
<img src="https://cdn.pixabay.com/photo/2021/09/05/01/07/rice-6598710_1280.jpg" alt="">
<h3>Rice</h3>
<p>
Rice is cultivated in the hills of Uttrakhand state in two distinct environments namely, rainfed and irrigated by different categories of farmers with predominance of marginal and small farmers. The promising rice establishment methods in rainfed are direct-seeded while in irrigated environment are transplanting.</p>
<a href="#" class="btn">read more</a>
</div>
<div class="box">
<img src="https://cdn.pixabay.com/photo/2015/02/18/16/10/wheat-640960_1280.jpg" alt="">
<h3>wheat</h3>
<p>The wheat seeds must be sown in about 4 to 5 cm inside the soil. Always put the seeds in rows and maintain a spacing of 20-22.5 cm between the rows. Planting or sowing the seeds in the right time is also important as delayed sowing can cause a gradual decline in the production</p>
<a href="#" class="btn">read more</a>
</div>
<div class="box">
<img src="https://cdn.pixabay.com/photo/2017/10/16/17/58/sugarcane-2857972_1280.jpg" alt="">
<h3>Sugarcane</h3>
<p>Sugarcane is propagated primarily by the planting of cuttings. The sections of the stalk of immature cane used for planting are known as seed cane, or cane sets, and have two or more buds (eyes), usually three.
Seed cane is planted in well-worked fields</p>
<a href="#" class="btn">read more</a>
</div>
<div class="box">
<img src="https://cdn.pixabay.com/photo/2015/07/09/12/45/fields-837672_1280.jpg" alt="">
<h3>Maize</h3>
<p>
Maize is sown in rows, 60-75 cm apart, whereas the plants in the row are spaced at 20 to 25 cm. A population of 60-75 thousand plants per hectare at harvest are required for obtaining the optimum yield. Sowing in rows is generally done with drill or by dropping the seed behind the plough.</p>
<a href="#" class="btn">read more</a>
</div>
<div class="box">
<img src="https://cdn.pixabay.com/photo/2016/11/17/14/24/soy-1831704__340.jpg" alt="">
<h3>Soybean</h3>
<p>Land preparation for soybean should be done by proper ploughing followed by laddering. Mid-June is the best time for sowing soybean. Seeds should be sown by seed drill method in rows spacing 45-50 cm. ... Seed rate of 25-30 kg is preferred for sowing in 1-acre land</p>
<a href="#" class="btn">read more</a>
</div>
<div class="box">
<img src="https://cdn.pixabay.com/photo/2020/01/12/18/22/pulses-4760714_1280.jpg" alt="">
<h3>Pulses</h3>
<p>Pulse crops are cultivated in Kharif, Rabi and Zaid seasons of the Agricultural year. Rabi crops require mild cold climate during sowing period, during vegetative to pod development cold climate and during maturity / harvesting warm climate. Summer pulses are habitants of warm climate.</p>
<a href="#" class="btn">read more</a>
</div>
</div>
</section>
<!-- category section ends -->
<!-- tools section starts -->
<section class="packages" id="packages">
<h1 class="heading">Sprayers Tools</h1>
<div class="box-container">
<div class="box">
<div class="image">
<img src="images/img-1.png" alt="">
</div>
<div class="content">
<h3>Neptune PBS-13 PLUS
</h3>
<p>Knapsack Sprayers are conventional and most popular equipments used world wide. They are ideal to spray insecticides, pesticides, fungicides, herbicides etc. </p>
<div class="price">Price: ₹3899</div>
<a href="#" class="btn">Read More</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/img-2.png" alt="">
</div>
<div class="content">
<h3>Neptune Rocker Sprayers</h3>
<p>ISI Marked Sprayer, Efficient for spraying on tall trees and Long-distance spraying
Pump assembled on a wooden platform with a sturdy frame
</p>
<div class="price">Price: ₹5199</div>
<a href="#" class="btn">Read more</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/img-3.png" alt="">
</div>
<div class="content">
<h3>Neptune Foot Sprayers</h3>
<p>Long suction 2-meter hose with strainer and 5 meters long.
Detachable pressure vessel with high capacity. and easy maintenance.
</p>
<div class="price">Price: ₹5199</div>
<a href="#" class="btn">Read more</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/img-4.png" alt="">
</div>
<div class="content">
<h3>Neptune NF-8.0 Hand Sprayers</h3>
<p>Buy Neptune NF 8.0 Hand Sprayer Capacity 8 Litre online in India at wholesale rates. your search ends here as you can get the best Neptune NF 8.0 Hand Sprayer Capacity 8 Litre distributors in top cities such as Delhi NCR, Mumbai, Chennai, Bengaluru, Kolkata, Chennai, Pune, Jaipur, Hyderabad and Ahmedabad.</p>
<div class="price">Price: ₹1199</div>
<a href="#" class="btn">Read more</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/img-5.png" alt="">
</div>
<div class="content">
<h3>Neptune HTP Gold Plus Sprayers</h3>
<p>Compatible with engine or motor, for orchards and high terrains, lightweight and compact construction, sturdy and rugged construction, stainless steel piston.
Required power: 2 HP, hose pipe: 6 feet and 7 feet, no. of piston: 3, Output: 42-50 Liter / Min</p>
<div class="price">Price: ₹5999
</div>
<a href="#" class="btn">Read more</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/img-6.png" alt="">
</div>
<div class="content">
<h3>Neptune Hariyali-08 Manual Sprayers</h3>
<p>Knapsack Sprayers are conventional and most popular equipments used world wide. They are ideal to spray insecticides, pesticides, fungicides, herbicides etc. in field areas to protect the crop from pest attack. </p>
<div class="price">Price: ₹1699</div>
<a href="#" class="btn">Read more</a>
</div>
</div>
</div>
</section>
<!-- tools section ends -->
<!-- brush cutter tools section starts -->
<section class="packages" id="packages">
<h1 class="heading">Brush Cutter</h1>
<div class="box-container">
<div class="box">
<div class="image">
<img src="images/brush-1.png" alt="">
</div>
<div class="content">
<h3>Neptune BC-360 Brush Cutter
</h3>
<p>The offered trimmer by Neptune Farming Spray is designed to offer high cutting & trimming performance in tight spaces, edging along sidewalks and driveways - or anywhere where power is a must.</p>
<div class="price">Price: ₹13999</div>
<a href="#" class="btn">Read More</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/brush-2.png" alt="">
</div>
<div class="content">
<h3>Neptune BC-1200E Brush Cutter</h3>
<p>Transform any overgrown outdoor lawn into an attractive, well-manicured space with the 1200W 2 In 1 Grass Trimmer & Brush Cutter. Capable of cutting down tall grass, weeds and more, you can also trim edges to ensure the tidy finish reaches each and every corner.</p>
<div class="price">Price: ₹8899</div>
<a href="#" class="btn">Read more</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/brush-3.png" alt="">
</div>
<div class="content">
<h3>Balwaan CROP CUTTER - BBC-4 Stroke Side Pack Brush Cutter</h3>
<p>Brush cutters are a powerful grading tool used in big gardens and fields. Balwaan Red 4 Stroke Red Side Pack Crop Brush Cutter, MTAK-EN-BR-698 is one of the best selling products in the market.</p>
<div class="price">Price: ₹16900</div>
<a href="#" class="btn">Read more</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/brush-4.png" alt="">
</div>
<div class="content">
<h3>Balwaan CROP CUTTER - BBC-4 Stroke Back Pack Brush Cutter</h3>
<p>A brush cutter is very useful to properly maintain your garden. This Greenleaf 1.7HP 35.6 CC 4 stroke backpack brush cutter is the best in quality. This is a 4 stroke brush cutter and has 2800-3000 rpm speed. </p>
<div class="price">Price: ₹16800</div>
<a href="#" class="btn">Read more</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/brush-5.png" alt="">
</div>
<div class="content">
<h3>Neptune BC-520W Brush Cutter</h3>
<p>NEPTUNE SIMPLIFY FARMING Displacement Engine brushcutters are the mechanised way of cutting grass, weed, bushes and even crops in the field areas. They make the job easier and quicker for the users.</p>
<div class="price">Price: ₹15599
</div>
<a href="#" class="btn">Read more</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/brush-6.png" alt="">
</div>
<div class="content">
<h3>Honda UMK435T UENT Brush Cutter</h3>
<p>Brush cutters are a powerful grading tool used in big gardens and fields. Honda UMK435T U2NT 1.5HP 4 Stroke Brush Cutter is one of the best selling products in the market. </p>
<div class="price">Price: ₹23546</div>
<a href="#" class="btn">Read more</a>
</div>
</div>
</div>
</section>
<!-- brush tools section ends -->
<!-- Power Weeder Tools tools section starts -->
<section class="packages" id="packages">
<h1 class="heading">Power Weeder Tools</h1>
<div class="box-container">
<div class="box">
<div class="image">
<img src="images/power-1.png" alt="">
</div>
<div class="content">
<h3>Vst Shakti Maestro 55P Power Weeder
</h3>
<p>Made in France · Paddy Tiller · Cast iron engine, with oil bath air filter · Tines: 4 single set forged steel tines + 2 additional tines · Reinforced heavy duty</p>
<div class="price">Price: ₹1lakh</div>
<a href="#" class="btn">Read More</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/power-2.png" alt="">
</div>
<div class="content">
<h3>Vst Shakti ARO PRO 55P C3 Power Weeder</h3>
<p>Made in France · Vegetable / Horticulture Tiller · World Patented Gearbox : 2 gears forward + 1 reverse · Patented Belt tension clutch system adjusted for life </p>
<div class="price">Price: ₹84999</div>
<a href="#" class="btn">Read more</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/power-3.png" alt="">
</div>
<div class="content">
<h3>Vst Shakti FT50 JOSH Power Weeder</h3>
<p>Easy to operate Power Honda Engine Best in Fuel efficiency Assurance of service & spare parts Intercultivation Deweeding Bund Formation Suitable for Vegetable Crop
Tomato
Brinjal,etc</p>
<div class="price">Price: ₹55000</div>
<a href="#" class="btn">Read more</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/power-4.png" alt="">
</div>
<div class="content">
<h3>Vst Shakti RT70 JOSH Power Weeder</h3>
<p>Powerful Diesel Engine with 5.5HP@3000RPM,
Ditching and Earthing up attachments available,
Assurance of service & spare part,
Reverse Rotary for Earthing up,
Earthing,
Intercultivation</p>
<div class="price">Price: ₹1.2lakh</div>
<a href="#" class="btn">Read more</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/power-5.png" alt="">
</div>
<div class="content">
<h3>Shrachi 105G Petrol Power Weeder</h3>
<p>Shrachi Power Weeder is the most reliable farming tool that enhances agricultural production. Here all the detailed and accurate information about Shrachi Power Weeder is available. </p>
<div class="price">Price: N/A
</div>
<a href="#" class="btn">Read more</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/power-6.png" alt="">
</div>
<div class="content">
<h3>Pubert MAESTRO 55P Power Weeder</h3>
<p>Pubert Maestro 55P (Paddy Tiller/Wetland Cultivator), Power: 6 HP ; Displacement, 212 cc ; Fuel Tank Capacity, 3.5 liters ; Cutting Width, 600mm to 900mm</p>
<div class="price">Price: ₹90000</div>
<a href="#" class="btn">Read more</a>
</div>
</div>
</div>
</section>
<!-- Power Weeder Tools section ends -->
<!-- Power Weeder Tools tools section starts -->
<section class="packages" id="packages">
<h1 class="heading">Power Reaper Tools</h1>
<div class="box-container">
<div class="box">
<div class="image">
<img src="images/reaper-1.png" alt="">
</div>
<div class="content">
<h3>Shrachi SPR 1200 Paddy Power Reaper
</h3>
<p>To meet the various requirements of the customers, we are involved in offering a wide assortment of Power SPR 1200 Paddy Reaper.</p>
<div class="price">Price: ₹ 1.40 Lakh</div>
<a href="#" class="btn">Read More</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/reaper-2.png" alt="">
</div>
<div class="content">
<h3>Vst Shakti Honda GX200 Power Reaper</h3>
<p>Honda Power Reaper is one of the most reliable farming tools which works excellent in all reaping processes. This Honda reaper is the foremost choice of Indian farmers due to its all ultimate performance and long life expectancy.</p>
<div class="price">Price: N/A</div>
<a href="#" class="btn">Read more</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/reaper-3.png" alt="">
</div>
<div class="content">
<h3>Greaves Cotton GS MY4G 120 Power Reaper</h3>
<p>The Greaves Power Reaper is one of the most reliable agricultural equipment that works excellently in all reaping processes. This Greaves Power Reaper is the first choice of Indian farmers due to its unique performance and long lasting life.</p>
<div class="price">Price: N/A</div>
<a href="#" class="btn">Read more</a>
</div>
</div>
</div>
</section>
<!-- Power Weeder Tools section ends -->
<!-- Power Weeder Tools tools section starts -->
<section class="packages" id="packages">
<h1 class="heading">Earth Auger Tools</h1>
<div class="box-container">
<div class="box">
<div class="image">
<img src="images/earth-1.png" alt="">
</div>
<div class="content">
<h3>Neptune AG-43 Earth Auger
</h3>
<p>Neptune Earth Auger is the easy and convinient way to drill the earth in no time. It is ideal for use in Plantations, Forestry, Construction etc. </p>
<div class="price">Price: 15939</div>
<a href="#" class="btn">Read More</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/earth-2.png" alt="">
</div>
<div class="content">
<h3>Neptune AG-52 Earth Auger</h3>
<p>Neptune Earth Auger is the easy and convinient way to drill the earth in no time. It is ideal for use in Plantations, Forestry, Construction etc. </p>
<div class="price">Price: 16963</div>
<a href="#" class="btn">Read more</a>
</div>
</div>
<div class="box">
<div class="image">
<img src="images/earth-3.png" alt="">
</div>
<div class="content">
<h3>STIHL BT 360 Earth Auger</h3>
<p>
GeneralTechnical specificationsFeaturesAccessoriesDocuments
Robust two-man auger with additional stop switch for the second operator. 2.9kW. </p>
<div class="price">Price: N/A</div>
<a href="#" class="btn">Read more</a>
</div>
</div>
</div>
</section>
<!-- Power Weeder Tools section ends -->
<!-- newsletter section -->
<!-- footer section starts -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3>quick links</h3>
<a href="#home">home</a>
<a href="#about">Crops</a>
<a href="#packages">Farming Tools</a>
</div>
<div class="box">
<h3>contact info</h3>
<a href="#"> <i class="fas fa-phone"></i> 87878 </a>
<a href="#"> <i class="fas fa-phone"></i> 22323 </a>
<a href="#"> <i class="fas fa-envelope"></i> [email protected] </a>
<a href="#"> <i class="fas fa-map"></i> Uttrakhand, india - 400104 </a>
</div>
<div class="box">
<h3>follow us</h3>
<a href="#"> <i class="fab fa-facebook-f"></i> facebook </a>
<a href="#"> <i class="fab fa-twitter"></i> twitter </a>
<a href="#"> <i class="fab fa-instagram"></i> instagram </a>
<a href="#"> <i class="fab fa-linkedin"></i> linkedin </a>
<a href="#"> <i class="fab fa-github"></i> github </a>
</div>
</div>
<div class="credit">created by <span>Dynamic Developers</span> | all rights reserved!</div>
</section>
<!-- footer section ends -->
<script src="https://unpkg.com/swiper@7/swiper-bundle.min.js"></script>
<!-- custom js file link -->
<script src="js/script.js"></script>
</body>
</html>