-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
866 lines (758 loc) · 35.5 KB
/
index.html
File metadata and controls
866 lines (758 loc) · 35.5 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
<!DOCTYPE html>
<html>
<head>
<title>AP Creation</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href=".\css\style1.css">
<meta name="viewport" content="width-device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Lato|Merriweather|Roboto+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Muli&display=swap" rel="stylesheet">
<!-- <script type="text/javascript" src="https://platform-api.sharethis.com/js/sharethis.js#property=5e024205a7650f00122a6d4b&product=inline-share-buttons" async="async"></script> -->
<link href="https://fonts.googleapis.com/css?family=Fira+Sans|Muli|Noto+Serif&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Bitter&display=swap" rel="stylesheet">
<link
href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.css"
rel="stylesheet" type='text/css'>
<link media="all" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Anton&display=swap" rel="stylesheet">
</head>
<body>
<div class="icon-bar">
<!-- <a href="https://api.whatsapp.com/send?phone=+917036231237" class="facebook"><i class="fa fa-facebook"></i></a> -->
<a href="#" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="#" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="#" class="linkedin"><i class="fa fa-linkedin"></i></a>
<a href="https://api.whatsapp.com/send?phone=+917036231237" class="whatsapp"><i class="fa fa-whatsapp" href="https://api.whatsapp.com/send?phone=+917036231237" aria-hidden="true"></i></a>
</div>
<script>
$(window).scroll(function() {
//After scrolling 100px from the top...
if ( $(window).scrollTop() <= 100) {
$('#noc').css('visibility','hidden');
}
else {
$('#noc, #menuheader').attr('style', '');
$('#form2, #menuheader').attr('style', '');
}
});
</script>
<div class="topnav">
<!-- <a href="#"><p id="noc" style="margin-top: -25px; display: block;"><h3 style="color: #889e7f; font-family: 'Fira Sans', sans-serif; font-size: 45px; font-weight: bold; display: inline;">AP</h3><h3 style="color: #d9d9d9; font-family: 'Fira Sans', sans-serif; font-size: 45px; font-weight: bold; display: inline;"> Creation</h3></p></a> -->
<!-- <a><div class="dropdown">
<button onclick="myFunction()" class="dropbtn">☰</button>
<div id="myDropdown" class="dropdown-content">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</div>
</div></a> -->
<a href="" id="noc">AP Creation</a>
<a href="#new" class="first" id="hom">HOME</a>
<a href="#abouttext" class="first">ABOUT US</a>
<a href="#contact" class="first">CONTACT US</a>
<a href="tel:+917036231237" class="first">7036231237</a>
</div>
<div class="container-fluid">
<div class="row" id="new" style="margin-top: 80px;">
<div class="col-lg-9" style="height: 500px;">
<div class="container">
<p><h1><center id="welc1">Welcome to AP Creation!</center></h1></p>
<p><h3> <center id="welc">Complete Customization | Premium Quality | Free Artwork | On-time delivery at your doorstep |
Appealing Shapes | Dome Epoxy Coating</center></h3></p><!-- </div> -->
<p><h6 id="foro"><center>for orders</center></h6></p>
<div class="row" style="height: 100px;" id="wce">
<div class="col-lg-3" style="height: 100px;">
</div>
<div class="col-lg-3" style="height: 100px;">
<div style="height: 50px;"><center style="font-size: 20px; margin-left:-220px;"><img src="./images/what10.png">
<img src="./images/call2.png"></center>
</div>
<div style="height: 50px;margin top: 30px;">
<div class="container">
<center><span id="wce1">+917036231237</span></center></div>
</div>
</div>
<div class="col-lg-3" id="mailo">
<div style="height: 50px;"><center id="mailp"><img src="./images/123.png"></center>
</div>
<div style="height: 50px;">
<div class="container">
<center><span id="wce2">apcreation@hotmail.com</span></center></div>
</div>
</div>
<div class="col-lg-3" style="height: 100px; ">
</div>
</div>
</div>
</div>
<div class="col-lg-3" style="height: 300px;">
<div class="container" style="height: 420px;">
<div id="form2">
<table>
<tr><td style="display: block; margin-left: 10px;">Name</td></tr>
<tr><td style="display: block; margin-left: 10px;"><input style="padding-right: 95px;" type="text" name=""></td></tr>
<tr><td style="display: block; margin-left: 10px;">phone number</td></tr>
<tr><td style="display: block; margin-left: 10px;"><input style="padding-right: 95px;" type="text" name=""></td></tr>
<tr><td style="display: block; margin-left: 10px;">Email</td></tr>
<tr><td style="display: block; margin-left: 10px;"><input style="padding-right: 95px;" type="text" name=""></td></tr>
<tr><td style="display: block; margin-left: 10px;">product category</td></tr>
<tr><td style="display: block; margin-left: 10px;"><input style="padding-right: 95px;" type="text" name=""></td></tr>
<tr><td style="display: block; margin-left: 10px;">quantity</td></tr>
<tr><td style="display: block; margin-left: 10px;"><input style="padding-right: 95px;" type="text" name=""></td></tr>
<tr><td style="display: block; margin-left: 10px;">image upload</td></tr>
<tr><td style="display: block; margin-left: 10px;"><input style="padding-right: 95px;" type="text" name=""></td></tr>
<tr><td style="display: block; margin-left: 100px;"> <button type="button" class="btn btn-success">SUBMIT</button></td></tr>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row" style="height: 80px; background-color: black;">
<div class="container">
<a href="" id="keyc" class="first">Keychains</a>
<a href="" class="first">Option2</a>
<a href="" class="first">Option3</a>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row" id="cat1">
<div class="col-lg-8" id="imagetext">
<div id="entity1">
<div class="row" id="innerentity">
<div class="col-lg-6" id="photo">
<div id="demo" style="width: 100%; height: 300px;" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="./images/IMG_9086.jpg" alt="Los Angeles" width="100%" height="300">
</div>
<div class="carousel-item">
<img src="./images/IMG_9066.JPG" alt="Chicago" width="100%" height="300">
</div>
<div class="carousel-item">
<img src="./images/IMG_9057.JPG" alt="New York" width="100%" height="300">
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
<div class="col-lg-6" id="text">
<article>
<p><h4><center>Metal Badges</center></h4></p>
<p class="cont"> Available with the richness of brass, stainless steel, tin, and more. These vibrant, shiny badges with a customized shape, material, laminations and pins look flawless, just the way you want. With affordable prices and magnetic variants, these are perfect for anything.
</p>
</article>
</div>
</div>
</div>
<div id="entity2">
<div class="row" id="innerentity">
<div class="col-lg-6 " id="photo">
<div id="demo1" style="width: 100%; height: 300px;" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#demo1" data-slide-to="0" class="active"></li>
<li data-target="#demo1" data-slide-to="1"></li>
<li data-target="#demo1" data-slide-to="2"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="./images/IMG_9086.jpg" alt="Los Angeles" width="100%" height="300">
</div>
<div class="carousel-item">
<img src="./images/IMG_9066.jpg" alt="Chicago" width="100%" height="300">
</div>
<div class="carousel-item">
<img src="./images/IMG_9255.jpg" alt="New York" width="100%" height="300">
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo1" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo1" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
<div class="col-lg-6" id="text">
<article>
<p><h4><center>Wooden Badges</center></h4></p>
<p class="cont"><center class="cont"> Looking for something vintage, engraved and perfect for the special occasion. Wooden badges are here to rescue. With premium dome epoxy coating and texture adding value to your joy.
</center>
<!-- Indian food is also heavily influenced by religion, in particular Hindu, cultural choices and traditions.The cuisine is also influenced by centuries of Islamic rule, particularly the Mughal rule. Samosas and pilafs can be regarded as examples -->.</p>
</article>
</div>
</div>
</div>
</div>
<div class="col-lg-4" id="form">
<div id="form1">
<iframe src="" name="hidden_iframe" id="hidden_iframe" style="display: none;" onload="if(submitted){window.location='file:///C:/Users/AMITESH/Desktop/badge1/index.html';}"></iframe>
<form action="https://docs.google.com/forms/d/e/1FAIpQLScG8hY4fan4E5MJ4eof0ASsczzf8htfqUjErl8t29-vMaa-cg/formResponse?" method="POST" target="hidden_iframe" onsubmit="submitted=true">
<label for="fname" class="change1">Name</label>
<input type="text" class="change" id="fname" name="entry.1290377782"placeholder="Your name.." required>
<label for="pnumber" class="change1">Phone number</label>
<input type="text" class="change" id="pnumber" name="entry.1751427031" placeholder="Your Phone number.." required onkeyup="check(); return false;" ><span id="message"></span>
<label for="email" class="change1" id="em">Email</label>
<input type="text" class="change" id="email" name="entry.363444995" placeholder="Your Email id..">
<label for="product category" class="change1">Product Category</label>
<select id="productcategory" class="change" name="entry.1901932496">
<option value="Metal">Metal</option>
<option value="Acrylic">Acrylic</option>
<option value="Button">Button</option>
<option value="not_sure">Not Sure</option>
</select>
<button onclick="ns()" class="btn btn-info" id="but" style="display: block;">Click if not sure about category</button><input type="text" name="entry.856466517" id="notsure" class="change">
<label for="quantity" id="quant" class="change1">Quantity</label>
<input type="text" class="change" id="quantity" name="entry.447000353" placeholder="Your quantity..">
<label for="comment" class="change1">Comment</label>
<input type="text" class="change" id="comment" name="entry.1281807115" placeholder="Your comment..">
<input type="text" class="change" id="utm_source" name="entry.1752881774" placeholder="Your comment.." style="display: none;">
<input type="text" class="change" id="utm_campaign" name="entry.1847582634" placeholder="Your comment.." style="display: none;">
<input type="text" class="change" id="utm_medium" name="entry.601919432" placeholder="Your comment.." style="display: none;">
<input type="text" class="change" id="keyword" name="entry.293828544" placeholder="Your comment.." style="display: none;">
<!-- <label for="image upload" class="change1">Image upload</label>
<input type="text" class="change" id="image upload" name="image upload" placeholder=""> -->
<input type="submit" value="Submit" id="submit">
</form>
</div>
</div>
</div>
</div>
<script type="text/javascript">
function ns(){
document.getElementById("but").innerHTML="What is your Budget?"
// var ns=prompt("What is your budget?");
// document.getElementById("notsure").value=ns;
var vis="visible";
$('#notsure').css('visibility','visible');
$('#quant').css('margin-top','0px');
}
</script>
<script>
window.onload=function(){
function parseURLParameter(parameter){
var FullURL=window.location.search.substring(1);
var ParametersArray= FullURL.split('&');
for(i=0; i<ParametersArray.length; i++)
{
var currentParameter=ParametersArray[i].split('=');
if(currentParameter[0]==parameter)
{
return(currentParameter[1]);
}
}
}
var PageName=parseURLParameter('page');
var utms=parseURLParameter('utm_source');
var utmc=parseURLParameter('utm_campaign');
var utmm=parseURLParameter('utm_medium');
var key=parseURLParameter('keyword');
console.log(utms);
if(typeof utm_source!=='undefined'){
document.getElementById("utm_source").value = utms;
}else{
$("#utm_source").val()= 'No value found';
}
if(typeof utm_campaign!=='undefined'){
document.getElementById("utm_campaign").value = utmc;
}else{
$("#utm_campaign").val()= 'No value found';
}
if(typeof utm_medium!=='undefined'){
document.getElementById("utm_medium").value = utmm;
}else{
$("#utm_medium").val()= 'No value found';
}
if(typeof keyword!=='undefined'){
document.getElementById("keyword").value = key;
}else{
$("#keyword").val()= 'No value found';
}
}
function check()
{
var pass1 = document.getElementById('pnumber');
var message = document.getElementById('message');
var goodColor = "#0C6";
var badColor = "#FF9B37";
var originalcolor="#ccffff";
var hid="hidden";
var vis="visible";
if(pass1.value.length!=10){
pass1.style.backgroundColor = badColor;
message.style.color = badColor;
message.innerHTML = "required 10 digits, match requested format!"
document.getElementById(em).style.display=hid;
}
else if(pass1.value.length==10){
message.innerHTML =""
pass1.style.backgroundColor = originalcolor;
document.getElementById(em).style.display=vis;
}
}
// function postToGoogle() {
// var field1 = $("#fname").val();
// var field2 = $("#pnumber").val();
// var field3 = $("#email").val();
// var field4 = $("#productcategory option:selected").text();
// if(field1 == ""){
// alert('Please Fill Your Name');
// document.getElementById("fname").focus();
// return false;
// }
// if(field2 == "" || field3.length > 10 || field3.length < 10){
// alert('Please Fill Your contact number');
// document.getElementById("pnumber").focus();
// return false;
// }
// if(field3 == ""){
// alert('Please Fill Your Email');
// document.getElementById("email").focus();
// return false;
// }
// $.ajax({
// url: "https://docs.google.com/forms/d/e/1FAIpQLScG8hY4fan4E5MJ4eof0ASsczzf8htfqUjErl8t29-vMaa-cg/formResponse?",
// data: {"entry.1290377782": field1, "entry.1751427031": field2, "entry.363444995": field3, "entry.1901932496": field4},
// type: "POST",
// dataType: "xml",
// success: function(d)
// {
// },
// error: function(x, y, z)
// {
// // $('#success-msg').show();
// $('#form').hide();
// }
// });
// return false;
// }
var submitted=false;
$(document).ready(function(){
$("#submit").on("click", function(){
alert("Your responses have been recorded successfully!!!");
});
});
</script>
<script type="text/javascript">
$(window).scroll(function() {
//After scrolling 100px from the top...
if ( $(window).scrollTop() <= 350) {
$('#form1').css('display','none');
}
else if ( $(window).scrollTop() >= 550 && $(window).scrollTop() <=3150) {
$('#form1').css('position','fixed');
$('#form1').css('margin-top','-565px');
$('#form2').css('display','hidden');
// $('#menuheader').css('margin', '65px auto 0');
//Otherwise remove inline styles and thereby revert to original stying
} else {
$('#form1, #menuheader').attr('style', '');
$('#form2, #menuheader').attr('style', '');
}
});
$(window).scroll(function() {
if($(window).scrollTop() >= 350){
$('#form2').css('display','none');
}
else {
$('#form2, #menuheader').attr('style', '');
}
});
</script>
<div class="container-fluid">
<div class="row" id="cat2">
<div class="col-lg-8" id="imagetext">
<div id="entity3">
<div class="row" id="innerentity">
<div class="col-lg-6" id="photo">
<div id="demo" style="width: 95%; height: 300px; margin-left: 10px" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="la.jpg" alt="Los Angeles" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="chicago.jpg" alt="Chicago" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="ny.jpg" alt="New York" width="1100" height="500">
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
<div class="col-lg-6" id="text">
<article>
<p><h4><center>Acrylic Badges</center></h4></p>
<p class="cont"><center class="cont">Most affordable, durable, and ideal for business, events, and designation. With the customizations in shape, size, and pins, these badges can be perfect to describe anything in a badge. Further dome epoxy lamination highlights the content and makes it appealing.</center>
<!-- Indian food is also heavily influenced by religion, in particular Hindu, cultural choices and traditions.The cuisine is also influenced by centuries of Islamic rule, particularly the Mughal rule. Samosas and pilafs can be regarded as examples -->.</p>
</article>
</div>
</div>
</div>
<div id="entity4">
<div class="row" id="innerentity">
<div class="col-lg-6 " id="photo">
<div id="demo" style="width: 100%; height: 300px; margin-left: 10px" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="la.jpg" alt="Los Angeles" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="chicago.jpg" alt="Chicago" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="ny.jpg" alt="New York" width="1100" height="500">
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
<div class="col-lg-6" id="text">
<article>
<p><h4><center>Button Badges</center></h4></p>
<p class="cont"><center class="cont">Most common yet trendy, it could be a cartoon, smiley, design, brand, logo...anything. Stick it to your bag, shirt or uniform, use it for an event or promotion. With all the customizations available in 58mm and 44mm sizes, get the badge you need.
</center>
<!-- Indian food is also heavily influenced by religion, in particular Hindu, cultural choices and traditions.The cuisine is also influenced by centuries of Islamic rule, particularly the Mughal rule. Samosas and pilafs can be regarded as examples -->.</p>
</article>
</div>
</div>
</div>
</div>
<div class="col-lg-4" id="form">
</div>
</div>
</div>
<div class="container-fluid">
<div class="row" id="cat3">
<div class="col-lg-8" id="imagetext">
<div id="entity5">
<div class="row" id="innerentity">
<div class="col-lg-6" id="photo">
<div id="demo" style="width: 95%; height: 300px; margin-left: 10px" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="la.jpg" alt="Los Angeles" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="chicago.jpg" alt="Chicago" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="ny.jpg" alt="New York" width="1100" height="500">
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
<div class="col-lg-6" id="text">
<article>
<p><h4><center>School Badges</center></h4></p>
<p class="cont"><center class="cont">Children love badges, be it Prefect, Captain, Head Boy, Winner....all can be turned into a badge. Pin badges are an affordable option when you are looking for a combination of quality and price. With all the customizations available, give students a chance to flaunt their badges.
</center>
<!-- Indian food is also heavily influenced by religion, in particular Hindu, cultural choices and traditions.The cuisine is also influenced by centuries of Islamic rule, particularly the Mughal rule. Samosas and pilafs can be regarded as examples -->.</p>
</article>
</div>
</div>
</div>
<div id="entity6">
<div class="row" id="innerentity">
<div class="col-lg-6 " id="photo">
<div id="demo" style="width: 100%; height: 300px; margin-left: 10px" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="la.jpg" alt="Los Angeles" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="chicago.jpg" alt="Chicago" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="ny.jpg" alt="New York" width="1100" height="500">
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
<div class="col-lg-6" id="text">
<article>
<p><h4><center id="promb">Promotional Badges</center></h4></p>
<p class="cont"><center id="prom"> Pin your brand on every customer with promotional badges, one of the best corporate giveaway products. A fantastic way to raise recognition of your business, because your logo will be seen every time you have printed badges fastened to your customers’ clothing.
</center>
<!-- Indian food is also heavily influenced by religion, in particular Hindu, cultural choices and traditions.The cuisine is also influenced by centuries of Islamic rule, particularly the Mughal rule. Samosas and pilafs can be regarded as examples -->.</p>
</article>
</div>
</div>
</div>
</div>
<div class="col-lg-4" id="form">
</div>
</div>
</div>
<div class="container-fluid">
<div class="row" id="cat4">
<div class="col-lg-8" id="imagetext">
<div id="entity7">
<div class="row" id="innerentity">
<div class="col-lg-6" id="photo">
<div id="demo" style="width: 95%; height: 300px; margin-left: 10px" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="la.jpg" alt="Los Angeles" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="chicago.jpg" alt="Chicago" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="ny.jpg" alt="New York" width="1100" height="500">
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
<div class="col-lg-6" id="text">
<article>
<p><h4><center>Security Badges</center></h4></p>
<p class="cont"><center class="cont">Presenting you personalised shoulder and name badges with shiny armours and logos adding valour to your uniforms. Available in all the variants of shape, size and material.
</center>
<!-- Indian food is also heavily influenced by religion, in particular Hindu, cultural choices and traditions.The cuisine is also influenced by centuries of Islamic rule, particularly the Mughal rule. Samosas and pilafs can be regarded as examples -->.</p>
</article>
</div>
</div>
</div>
<div id="entity8">
<div class="row" id="innerentity">
<div class="col-lg-6 " id="photo">
<div id="demo" style="width: 100%; height: 300px; margin-left: 10px" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="la.jpg" alt="Los Angeles" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="chicago.jpg" alt="Chicago" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="ny.jpg" alt="New York" width="1100" height="500">
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
<div class="col-lg-6" id="text">
<article>
<p><h4><center>Smiley Badges</center></h4></p>
<p class="cont"><center class="cont">This season spread smiles with a badge on you. Add it to your backpack or your uniform, these affordable, shiny and cute badges fill the air with happiness.
</center>
<!-- Indian food is also heavily influenced by religion, in particular Hindu, cultural choices and traditions.The cuisine is also influenced by centuries of Islamic rule, particularly the Mughal rule. Samosas and pilafs can be regarded as examples -->.</p>
</article>
</div>
</div>
</div>
</div>
<div class="col-lg-4" id="form">
</div>
</div>
</div>
<div class="container-fluid">
<div class="row" id="cat5">
<div class="col-lg-8" id="imagetext">
<div id="entity9">
<div class="row" id="innerentity">
<div class="col-lg-6" id="photo">
<div id="demo" style="width: 95%; height: 300px; background-color: black; margin-left: 10px" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="la.jpg" alt="Los Angeles" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="chicago.jpg" alt="Chicago" width="1100" height="500">
</div>
<div class="carousel-item">
<img src="ny.jpg" alt="New York" width="1100" height="500">
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
<div class="col-lg-6" id="text">
<article>
<p><h4><center>Event Badges</center></h4></p>
<p class="cont"><center class="cont">Make your event a big hit with customized badges. Add fun with bride and groom tribe or be the manager with assistants around. Make your employees proud with a designation or show off the winner tag, badges can serve you all.
</center>
<!-- Indian food is also heavily influenced by religion, in particular Hindu, cultural choices and traditions.The cuisine is also influenced by centuries of Islamic rule, particularly the Mughal rule. Samosas and pilafs can be regarded as examples -->.</p>
</article>
</div>
</div>
</div>
</div>
<div class="col-lg-4" id="form">
</div>
</div>
</div>
<div class="container-fluid">
<div class="row" id="about">
<div class="container" id="abouttext">
<div class="container" id="aboutus">
<p><center><h2>About Us</h2></center></p>
<p id="aboutcontent">We at "AP Creation" transform designs to reality, be it Badges, Promotional T-Shirts, Keychains, or the rest. We merge in the best of art, premium quality raw material, and lots of hard work to deliver our best. In the market for the last two decades, there has been no match to the quality and prices we offer.
Apart from products being manufactured with the most sophisticated technology in the market, our quality check units make sure each product qualifies the entire range of parameters. Under the guidance of Mr. Rajesh Agrawal, who has been an industry expert for the past 40 years, we are growing with leaps and bounds. With an adroit team of employees, we look forward to serving YOU..!
</p>
</div>
</div>
</div>
</div>
<footer>
<div class="container-fluid">
<div class="row" style="height: 500px; margin-top: 50px;">
<div class="container" style="">
<div class="row">
<div class="col-lg-4" id="contact" style="height: 400px;">
<center style="font-family: 'Muli', sans-serif; font-size: 45px;">Contact Us</center><!--
<img src="../images/" style="height: 250px; width: 3"> -->
<center><img src="./images/call7.png" style="height:120px; width:120px;"></center>
<p><center style="font-size: 22px; margin-top: -10px">Prashal Agarwal</center></p>
<p><center style="font-size: 22px; margin-top: -20px">->+91 7036231237</center></p>
<p><center style="font-size: 22px; margin-top: -10px">Rajesh Agarwal</center></p>
<p><center style="font-size: 22px; margin-top: -20px">->+91 0000000000</center></p>
</div>
<div class="col-lg-4" id="email" style="height: 400px;">
<center style="font-family: 'Muli', sans-serif; font-size: 45px;">Email Us</center>
<center><img src="./images/email5.png" style="height:120px; width:120px;"></center>
</div>
<div class="col-lg-4" id="address" style="height: 400px;">
<center style="font-family: 'Muli', sans-serif; font-size: 45px;">Our Address</center>
<center><img src="./images/address1.png" style="height:120px; width:120px;"></center>
<center><p style="font-size: 20px;">19,Agrasen Nagar,Airport Road,Indore
Pin-452005</p></center>
</div>
</div>
</div>
</div>
<div class="row" id="social" style="background-color: #080808; height: 200px;">
<div class="container">
<p style="font-size: 40px; color: #224f17;">
Reach us out on social media!!!
</p>
<!-- <div class="sharethis-inline-share-buttons" style="height: 150px;"></div> -->
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-instagram"></a>
</div>
</div>
</div>
</footer>
</body>
</html>