-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloader.html
More file actions
1065 lines (707 loc) · 32.3 KB
/
Copy pathloader.html
File metadata and controls
1065 lines (707 loc) · 32.3 KB
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
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html>
<head>
<style>
#loader
{
position: absolute;
left: 50%;
top: 40%;
margin-left: -40px;
margin-top: -40px;
}
#loadertxt
{
position: absolute;
top:50%;
left:50%;
font-size: 18px;
margin-left: -80px;
}
#loadcont
{
position: fixed;
width: 100%;
height: 100%;
z-index: 99; /* Higher than anything else in the document */
}
</style>
</head>
<body>
<div id="loadcont">
<div id="loader" style="background-image: url(logo/loadlogo.png);width:80px;">
<img src="loader.gif" width="80px;">
</div>
<center> <div id="loadertxt">
United Curry Powders
</div></center>
</div>
<script> document.getElementById("loadcont").style.display = "block";</script>
<script>$(window).load(function() { document.getElementById("loadcont").style.display = "none"; });</script>
</body>
</html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href='https://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed:700,300,400' rel='stylesheet' type='text/css'>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script src="jquery.bgswitcher.js"></script>
<style type="text/css">
#html,body
{
width:100%;
position: relative;
font-family: 'Roboto Condensed', sans-serif;
padding-top: 80px;
padding-left:0;
padding-right:0;
margin:0;
background-color:white;
}
#loader
{
position: absolute;
left: 50%;
top: 40%;
margin-left: -40px;
margin-top: -40px;
}
#loadertxt
{
color: #3e8e3d;
font-family: 'Lobster', cursive;
position: absolute;
top:50%;
left:50%;
font-size: 20px;
margin-left: -80px;
}
#loadcont
{
position: fixed;
width: 100%;
height: 100%;
z-index: 9999; /* Higher than anything else in the document */
background-color: white;
}
#logo
{
font-size: 19px;
font-family: 'Lobster', cursive;
}
#navbar
{
font-family: 'Droid Sans', sans-serif;
width: 100%;
height: 100px;
}
.navbar-nav > li > a {
line-height: 50px;
}
.navbar-collapse.in
{
margin-top: 20px;
background-color:#fefefe;
}
.slideanim {visibility:hidden;}
.slide {
/* The name of the animation */
animation-name: slide;
-webkit-animation-name: slide;
/* The duration of the animation */
animation-duration: 1s;
-webkit-animation-duration: 1s;
/* Make the element visible */
visibility: visible;
}
/* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
@keyframes slide {
0% {
opacity: 0;
-webkit-transform: translateY(70%);
}
100% {
opacity: 1;
-webkit-transform: translateY(0%);
}
}
@-webkit-keyframes slide {
0% {
opacity: 0;
-webkit-transform: translateY(70%);
}
100% {
opacity: 1;
-webkit-transform: translateY(0%);
}
}
.one-edge-shadow {
-webkit-box-shadow: 0 6px 10px -6px black;
-moz-box-shadow: 0 6px 10px -6px black;
box-shadow: 0 6px 10px -6px black;
}
.btn-primary {
background:black;
color: #ffffff;
border-color: black;
border-style: solid;
border-width: 2px;
border-radius: 0 !important;
width: 150px;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
background: #ffffff;
color: black;
border-color: black;
border-width: 2px;
transition: all 0.9s ease 0s;
}
@font-face {
font-family:Uroob;
src: url(Uroob.ttf);
}
.carousel-content {
position: absolute;
top: 20%;
left: 10%;
z-index: 20;
color: white;
text-shadow: 0 1px 2px rgba(0,0,0,.6);
font-family:Uroob;
font-size: 10vw;
}
.item.next .carousel-content {
}
/*.carousel-content {
transition: opacity 1s ease-in-out;
-moz-transition: opacity 1s ease-in-out;
-webkit-transition: opacity 1s ease-in-out;
}
*/
.carousel-content {
opacity: 0;
animation: fade 5s linear;
}
@keyframes fade {
0%{ opacity: 0 }
25% { opacity: 0 }
75% { opacity: 1 }
100%{ opacity: 0 }
}
.shadowin {
-moz-box-shadow: inset 0 0 20px #000000;
-webkit-box-shadow: inset 0 0 20px #000000;
box-shadow: inset 0 0 20px #000000;
}
.shadowout {
-moz-box-shadow: 0 0 20px #000000;
-webkit-box-shadow: 0 0 20px #000000;
box-shadow: 0 0 20px #000000;
}
.boxshadowout {
-moz-box-shadow: 0 0 10px #000000;
-webkit-box-shadow: 0 0 10px #000000;
box-shadow: 0 0 10px #000000;
}
.bottom-inshadow
{
box-shadow: inset 0 -7px 9px -7px #000000;
}
#wrapper{
position: relative;
width: 200px;
height: 200px;
}
.content{
color: #FFFFFF;
font-size: 26px;
font-weight: bold;
text-shadow: -1px -1px 1px #000, 1px 1px 1px #000;
position: relative;
z-index: 100;
}
.background{
color: #999999;
top: 0;
left: 0;
position: absolute;
z-index: -100;
}
#footlink
{
color: grey;
text-decoration:none;
transition: all 0.9s ease 0s;
}
#footlink:hover
{
color: white;
transition: all 0.5s ease 0s;
}
.gly
{
font-size: 40px;
}
.hi{
font-size: 18px;
}
#item-description
{
text-align: center;
font-weight: bold;
font-size: 20px;
height: 120px;
line-height: 90px;
}
</style>
</head>
<body id="myPage" >
<div id="loadcont">
<div id="loader" style="background-image: url(logo/loadlogo.png);width:80px;">
<img src="loader.gif" width="80px;">
</div>
<center> <div id="loadertxt">
United Curry Powders
</div></center>
</div>
<nav class="navbar navbar-default navbar-fixed-top one-edge-shadow" id="nav">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#myPage">
<div id="logo"><img src="logo/ucp.png" height="50px">United Curry Powder Products</div></a>
</div>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="collapse navbar-collapse" id="myNavbar" >
<ul class="nav navbar-nav navbar-right">
<li class="link active" href="#myPage"><a href="#myPage" >Home</a></li>
<li class="link" href="#about"><a href="#about">About</a></li>
<li class="link" href="#products"><a href="#products">Products</a></li>
<li class="link" href="#contact" ><a href="#contact">Contact</a></li>
</ul>
</div></div>
</nav>
<!-- *****************************************************************HOME************************************************************** -->
<div id="home"></div>
<div id="myCarousel" class="carousel slide" data-ride="carousel" style="background-color:grey;">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner shadowin" role="listbox">
<div class="item active">
<img src="images/1.png" alt="Chania" height="500px">
<div class="carousel-content">
"നന്മയുടെ<br>രുചി"
</div>
</div>
<div class="item">
<img src="images/2.png" alt="Chania" height="500px">
<div class="carousel-content">
"അമ്മയുടെ<br>കൈപ്പുണ്യം"
</div>
</div>
<div class="item">
<img src="images/3.png" alt="Flower" height="500px">
<div class="carousel-content">
"കേരളത്തിന്റെ <br>പാരമ്പര്യം"
</div>
</div>
<div class="item">
<img src="images/4.png" alt="Flower" height="500px">
<div class="carousel-content">
"നന്മയുടെ<br>രുചി"
</div>
</div>
<div class="item">
<img src="images/5.png" alt="Chania" height="500px">
<div class="carousel-content">
"അമ്മയുടെ<br>കൈപ്പുണ്യം"
</div>
</div>
<div class="item">
<img src="images/6.png" alt="Flower" height="500px">
<div class="carousel-content">
"കേരളത്തിന്റെ <br>പാരമ്പര്യം"
</div>
</div>
</div>
<!-- Left and right controls -->
<div id="controls">
<a class="left carousel-control " href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control fade-in" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<div class="container-fluid" id="shaddiv">
<div class="row ">
<div class="col-sm-2" ></div>
<div class="col-sm-6" style="padding:60px;">
<h2><b>
Hi,</b>
</h2>
<div class="hi">
<strong> Quality ,Taste & trust,</strong> obviously these are what people aim when they look in to kerala, especialy for spices.
food habits in todays lifestyle reflect the taste of people.while people run for taste and flavor,they might not get the best in health.
We are here for you with a <span id="topyear"></span> years of legacy to deliver the best in handpicked spice products with real taste and premium quality.
In the whole journey of ours,we never compermised in the hygene of what we deliver.we roamed around the whole kerala to find the top taste and we have the trust among the keralites.
<br><br>Presenting to you <br><strong>United Curry Powder Products.</strong></div>
</div>
<div class="col-sm-4" style="padding:60px;"><center>
<img class="slideanim" src="logo/ucp.JPG" width="200px"></center>
</div>
</div>
<div class="row shadowout" style="background-color:#527047;">
<div class="col-sm-4" style="background-color:#527047;color:#ffffff;padding:50px;">
<div class="slideanim">
<h3>Mission
</h3>
The ultimate goal is to provide the best quality spices from the best natural resources and to assure that our customers are getting quality products according to their specifications and time. We do this by sourcing, processing and delivering each item in an economically efficient and quality consistent way.</div>
</div>
<div class="col-sm-4" style="background-color:#506E1F;color:#ffffff;padding:50px;">
<div class="slideanim">
<h3>Values
</h3>
Our focus is on the health of our customers and quality of products.
We are a good companion to our customers, motive to our stakeholders, inspire to our staff members and to add value in the short as well as the long term. UCP was one of the first companies that offered the spices industry. We work together with our customers to develop customer specific supply programs.
</div>
</div>
<div class="col-sm-4" style="background-color:#527047;color:#ffffff;padding:50px;">
<div class="slideanim">
<h3>Vision
</h3>
We are using our knowledge and experience to optimise our and our customers’ quality standards in food and spices. We constantly initiate and innovate in order to be decisive in our market. We secure an uninterrupted supply of authentic, natural and food safe spices. We commit to the importance of developing a sustainable supply chain.
</div>
</div>
</div>
<div class="row ">
<div class="col-sm-12 " style="padding:60px;"><center>
<h2>WANT TO BE A DEALER?</h2>
We have accompanied a number of dealers<br><br>
<div class="slideanim "> <a id="acontact" href="#contact"><button type="button"class="btn btn-Primary">Contact Us</button></a></div>
</center> </div>
</div>
<div class="row" style="background-color:#506E1F;">
<div class="col-sm-4" style="padding:80px;color:white;">
<center><h2>Our<br>Achivements</h2></center>
</div>
<div class="col-sm-8" style="padding:60px;background-color:#527057;color:white;">
<div class="row">
<div class="col-sm-3" style="padding:15px;">
<center>
<span class="glyphicon glyphicon-user gly" aria-hidden="true"></span>
<h2 class="count">12300</h2>Customers
</center>
</div>
<div class="col-sm-3"style="padding:15px;">
<center>
<span class="glyphicon glyphicon-briefcase gly" aria-hidden="true"></span>
<h2 class="count">450</h2>Delears
</center>
</div>
<div class="col-sm-3"style="padding:15px;">
<center>
<span class="glyphicon glyphicon-thumbs-up gly" aria-hidden="true"></span>
<h2 id="year" class="count"></h2>Years of Trust
</center>
</div>
<div class="col-sm-3"style="padding:15px;">
<center>
<span class="glyphicon glyphicon-globe gly" aria-hidden="true"></span>
<h2>Worldwide</h2>Trade
</center>
</div>
</div>
</div>
</div>
<!-- *****************************************************************ABOUT************************************************************** -->
<div class="row bgbox shadowin" id="about">
<div class="boxshadowout slideanim" style="margin:50px;background-color:rgba(255,255,255,0.6);padding-top:10px;padding-left:30px;padding-right:30px;padding-bottom:50px;">
<center><h1><b>About</b></h1> </center>
<b style="font-size:16px;"> United curry powder is having 28 years of rich legacy with the unity and love of five brothers.These successful years were founded on the quality and hygiene we are maintaining and the natural spices we are resourcing.
Today, united curry powder is one of the fast growing Industry in the spice market with more than 50 products being manufactured on a daily basis.
It has been based on the hard work, dedication and unity of our staff and the desires of our stake holders.Each of our products is footing on the market with the aim of our customer’s health and the desire to delivers natural food stuff.
The goodwill generated in the market is only based on the quality we are maintained and the fresh and natural products we are ensuring.
</b>
</div>
</div>
<div class="row">
<div class="col-sm-12 bottom-inshadow" style="background-color:white;">
<div class="row" style="padding:50px;">
<center>
<h2> <b>Founders</b></h2><br></center>
<div class="col-sm-1"></div>
<div class="col-sm-2 " style="padding:15px;">
<div class="boxshadowout" id="item-box" style="padding-top:30px;padding-bottom:30px;background-color:white;">
<center><img class="img-circle" src="images/Special%20Chilly%20powder.jpg" width="80%"/></center>
</div>
<div class="col-sm-12 boxshadowout" id="founder-description" style="background-color:#506E1F;color:white;padding:15px;">
<blockquote >
<p style="font-size:14px;">"Its Our Unity Which We Could Make People Smile Right After Their First Spoon"</p>
<footer style="color:white;"><strong>Amal Johny</strong><br>Founder,CEO</footer>
</blockquote>
</div>
</div>
<div class="col-sm-2 " style="padding:15px;">
<div class="boxshadowout" id="item-box" style="padding-top:30px;padding-bottom:30px;background-color:white;">
<center><img class="img-circle" src="images/Special%20Chilly%20powder.jpg" width="80%"/></center>
</div>
<div class="col-sm-12 boxshadowout" id="founder-description" style="background-color:#527057;color:white;padding:15px;">
<blockquote >
<p style="font-size:14px;">"For The Past Years We Were Delivering The Best to Our Customers</p>
<footer style="color:white;"><strong>Amal Johny</strong><br>Founder,CEO</footer>
</blockquote>
</div>
</div>
<div class="col-sm-2 " style="padding:15px;">
<div class="boxshadowout" id="item-box" style="padding-top:30px;padding-bottom:30px;background-color:white;">
<center><img class="img-circle" src="images/Special%20Chilly%20powder.jpg" width="80%"/></center>
</div>
<div class="col-sm-12 boxshadowout" id="founder-description" style="background-color:#506E1F;color:white;padding:15px;">
<blockquote >
<p style="font-size:14px;">"For The Past Years We Were Delivering The Best to Our Customers</p>
<footer style="color:white;"><strong>Amal Johny</strong><br>Founder,CEO</footer>
</blockquote>
</div>
</div>
<div class="col-sm-2 " style="padding:15px;">
<div class="boxshadowout" id="item-box" style="padding-top:30px;padding-bottom:30px;background-color:white;">
<center><img class="img-circle" src="images/Special%20Chilly%20powder.jpg" width="80%"/></center>
</div>
<div class="col-sm-12 boxshadowout" id="founder-description" style="background-color:#527057;color:white;padding:15px;">
<blockquote >
<p style="font-size:14px;">"For The Past Years We Were Delivering The Best to Our Customers</p>
<footer style="color:white;"><strong>Amal Johny</strong><br>Founder,CEO</footer>
</blockquote>
</div>
</div>
<div class="col-sm-2 " style="padding:15px;">
<div class="boxshadowout" id="item-box" style="padding-top:30px;padding-bottom:30px;background-color:white;">
<center><img class="img-circle" src="images/Special%20Chilly%20powder.jpg" width="80%"/></center>
</div>
<div class="col-sm-12 boxshadowout" id="founder-description" style="background-color:#506E1F;color:white;padding:15px;">
<blockquote >
<p style="font-size:14px;">"For The Past Years We Were Delivering The Best to Our Customers</p>
<footer style="color:white;"><strong>Amal Johny</strong><br>Founder,CEO</footer>
</blockquote>
</div>
</div>
<div class="col-sm-1"></div>
</div>
<div class="row" style="padding-bottom:100px;padding-left:40px;padding-right:40px;">
<center>
<h2><b>Customer Reviews</b></h2><br></center>
<div class="col-sm-2"></div>
<div class="col-sm-8 boxshadowout" style="padding:0;">
<div id="myCarousel" class="carousel slide" data-ride="carousel" style="padding:50px;">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active"><center><blockquote >
<p style="font-size:14px;">“we have been using UCP products for many years and i suggest this brand to everyone because it is healthy as well as delicious.”</p>
<footer><strong>Joyce antony, Mattoor, Ernakulam </strong><br>Customer</footer>
</blockquote> </center>
</div>
<div class="item">
<center><blockquote >
<p style="font-size:14px;">“ I have been using ucp spices for long period. They are maintaining standard quality for their all product"</p>
<footer><strong><br> Clintu antony, kalady, Ernakulam </strong><br>Customer</footer>
</blockquote> </center>
</div>
<div class="item">
<center><blockquote >
<p style="font-size:14px;">“Ucp is providing the best quality spices to the customers and in personal, i will suggest ucp products to all of my relatives and friends”</p>
<footer><strong>Antu ayiroor, kalady </strong><br>Distributer</footer>
</blockquote> </center>
</div>
</div>
<!-- Left and right controls -->
<div id="controls">
<a class="left carousel-control " href="#myCarousel" role="button" data-slide="prev">
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control fade-in" href="#myCarousel" role="button" data-slide="next">
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
<div class="col-sm-2"></div>
</div>
</div>
</div>
</div>
<!-- *****************************************************************PRODUCTS************************************************************** -->
<div class="row " id="products">
<div class="col-sm-12 bottom-inshadow" style="padding:50px;background-color:#506E1F;color:white">
<center><h1>Products</h1>
<br><br>
<h2>Spices</h2><h5>Premium quality spices carefully picked from the farm with 100% hygienic grinding and packing.</h5><br><br>
</center>
<!-- ***********ITEM************ -->
<div class="col-sm-3 " style="padding:15px;">
<div class="boxshadowout" id="item-box" style="padding-top:30px;padding-bottom:30px;background-color:grey;">
<center><img class="slideanim" src="images/products/p5.png" style="width:60%;"/></center>
</div>
<div class="col-sm-12 boxshadowout" id="item-description" style="background-color:white;color:black;padding:15px;">
Chilli Powder<br><br><br><br><br>
</div>
</div>
<!-- *********************** -->
<!-- ***********ITEM************ -->
<div class="col-sm-3 " style="padding:15px;">
<div class="boxshadowout" id="item-box" style="padding-top:30px;padding-bottom:30px;background-color:grey;">
<center><img class="slideanim" src="images/products/p3.png" style="width:60%;"/></center>
</div>
<div class="col-sm-12 boxshadowout" id="item-description" style="background-color:white;color:black;padding:15px;">
Coriander Powder<br><br><br><br><br>
</div>
</div>
<!-- *********************** -->
<!-- ***********ITEM************ -->
<div class="col-sm-3 " style="padding:15px;">
<div class="boxshadowout" id="item-box" style="padding-top:30px;padding-bottom:30px;background-color:grey;">
<center><img class="slideanim" src="images/products/p6.png" style="width:60%;"/></center>
</div>
<div class="col-sm-12 boxshadowout" id="item-description" style="background-color:white;color:black;padding:15px;">
Pepper Powder<br><br><br><br><br>
</div>
</div>
<!-- *********************** -->
</div>
<div class="col-sm-12 bottom-inshadow" style="padding:50px;background-color:#527057;color:white">
<center>
<h2>Masala</h2><h5>Grandma’s traditional masala mixes blended with kerala spices.</h5><br><br>
</center>
<!-- ***********ITEM************ -->
<div class="col-sm-3 " style="padding:15px;">
<div class="boxshadowout" id="item-box" style="padding-top:30px;padding-bottom:30px;background-color:grey;">
<center><img class="slideanim" src="images/products/p1.png" style="width:60%;"/></center>
</div>
<div class="col-sm-12 boxshadowout" id="item-description" style="background-color:white;color:black;padding:15px;">
Garam Masala<br><br><br><br><br>
</div>
</div>
<!-- *********************** -->
<!-- ***********ITEM************ -->
<div class="col-sm-3 " style="padding:15px;">
<div class="boxshadowout" id="item-box" style="padding-top:30px;padding-bottom:30px;background-color:grey;">
<center><img class="slideanim" src="images/products/p2.png" style="width:60%;"/></center>
</div>
<div class="col-sm-12 boxshadowout" id="item-description" style="background-color:white;color:black;padding:15px;">
Curry Masala<br><br><br><br><br>
</div>
</div>
<!-- *********************** -->
</div>
<div class="col-sm-12 bottom-inshadow" style="padding:50px;background-color:#506E1F;color:white">
<center>
<h2>Rice Flour</h2><h5>Picked from farmers and made from finely milled rice.</h5><br><br>
</center>
<!-- ***********ITEM************ -->
<div class="col-sm-3 " style="padding:15px;">
<div class="boxshadowout" id="item-box" style="padding-top:30px;padding-bottom:30px;background-color:grey;">
<center><img class="slideanim" src="images/products/p100.png" style="width:60%;"/></center>
</div>
<div class="col-sm-12 boxshadowout" id="item-description" style="background-color:white;color:black;padding:15px;">
Appam Powder<br><br><br><br><br>
</div>
</div>
<!-- *********************** -->
<!-- ***********ITEM************ -->
<div class="col-sm-3 " style="padding:15px;">
<div class="boxshadowout" id="item-box" style="padding-top:30px;padding-bottom:30px;background-color:grey;">
<center><img class="slideanim" src="images/products/p101.png" style="width:60%;"/></center>
</div>
<div class="col-sm-12 boxshadowout" id="item-description" style="background-color:white;color:black;padding:15px;">
Puttu Powder<br><br><br><br><br>
</div>
</div>
<!-- *********************** -->
</div>
</div>
<!-- *****************************************************************CONTACTS************************************************************** -->
<div class="row bottom-inshadow" id="contact" style="background-color:#FAFAFA;" >
<div class="col-sm-6" style="padding:50px;background-color:#FAFAFA;">
<h1><b>Contact</b></h1><br>
<h2>United Curry Powders</h2>
<p><span class="glyphicon glyphicon-map-marker"></span> Angamaly, India</p>
<p><span class="glyphicon glyphicon-phone"></span> +91 123456789</p>
<p><span class="glyphicon glyphicon-envelope"></span> info@ucpcurrypowder.com</p>
</div>
<div class="col-sm-6">
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSd1NyA57UeJLFQefBG5gWoDa7L6QC7vYDsYIkVpjlOjgdsszQ/viewform?embedded=true" width="100%" height="1200" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
</div>
<div id="googleMap" style="height:400px;width:100%;"></div> <br>
</div>
<!-- *****************************************************************FOOTER************************************************************** -->
<div class="row" style="background-color:black;padding:30px;">
<div class="col-sm-4">
<center>Copyright ©<a id="footlink"> United Curry Powder Products </a><span id="footyr"></span></center>
</div>