-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1037 lines (996 loc) · 46.6 KB
/
index.html
File metadata and controls
1037 lines (996 loc) · 46.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google Tag Manager -->
<script>
(function(w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(),
event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-K88C43L');
</script>
<!-- End Google Tag Manager -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Providing Freelance Services for Softwares, Extensions, Mobile Apps, Websites, Web Automation Softwares for all OS">
<meta name="author" content="Naeem">
<title>Software Prince</title>
<link rel="icon" type="image/x-icon" href="SoftwarePrinceLogo.webp">
<!-- Additional CSS Files -->
<script src="https://use.fontawesome.com/aed8db9310.js"></script>
<link rel="stylesheet" href="assets/css/templatemo-onix-digital.css">
<link rel="stylesheet" href="assets/css/animated.css">
<link rel="stylesheet" href="assets/css/owl.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://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>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-K88C43L" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="modal fade right bg-dark" id="viewPortfolio" tabindex="-1" role="dialog" aria-labelledby="exampleModalPreviewLabel" aria-hidden="true">
<div class="modal-dialog-full-width modal-dialog momodel modal-fluid bg-dark" role="document">
<div class="modal-content-full-width modal-content bg-dark">
<div class=" modal-header-full-width modal-header text-center bg-dark">
<button type="button" class="close " data-dismiss="modal" aria-label="Close">
<span style="font-size: 1.3em;" class="text-danger" aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" id="loadArea">
</div>
</div>
</div>
</div>
<!-- ***** Preloader Start ***** -->
<div id="js-preloader" class="js-preloader">
<div class="preloader-inner">
<span class="dot"></span>
<div class="dots">
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
<!-- ***** Preloader End ***** -->
<!-- ***** Header Area Start ***** -->
<header class="header-area header-sticky wow slideInDown" data-wow-duration="0.75s" data-wow-delay="0s">
<div class="container">
<div class="row">
<div class="col-12">
<nav class="main-nav">
<!-- ***** Logo Start ***** -->
<a href="index.html" class="logo">
<img src="SoftwarePrinceLogo.webp" style="width:6rem;">
</a>
<!-- ***** Logo End ***** -->
<!-- ***** Menu Start ***** -->
<ul class="nav">
<li class="scroll-to-section"><a href="#top" class="active">Home</a></li>
<li class="scroll-to-section"><a href="#services">Services</a></li>
<li class="scroll-to-section"><a href="#about">About</a></li>
<li class="scroll-to-section"><a href="#portfolio">Portfolio</a></li>
<li class="scroll-to-section"><a href="#video">Videos</a></li>
<li class="scroll-to-section"><a href="#testimonials">Testimonials</a></li>
<li class="scroll-to-section">
<div class="main-red-button-hover"><a href="#contact">Contact Me Now</a></div>
</li>
</ul>
<a class='menu-trigger'>
<span>Menu</span>
</a>
<!-- ***** Menu End ***** -->
</nav>
</div>
</div>
</div>
</header>
<!-- ***** Header Area End ***** -->
<div class="main-banner" id="top">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="row">
<div class="col-lg-6 align-self-center">
<div class="owl-carousel owl-banner">
<div class="item header-text">
<h6>Welcome to Software Prince</h6>
<h2>Build <em>Your Website</em><span> the best Way</span>?</h2>
<p>This is best place for you to grow your business to get an attractive business website. You should
have a website for your business is to increase your organization's credibility. our rate is about 150 USD for each development hour. Contact us to see how much hours it will take for your project.</p>
<div class="down-buttons">
<div class="main-blue-button-hover" style="margin-top:10px;">
<a href="#about">About Us</a>
</div>
<div class="call-button" style="margin-top:10px;">
<a target="_blank" href="https://go.softwareprince.com/Skype"><i class="fa fa-skype"></i></a>
<a href="https://go.softwareprince.com/Mail"><i class="fa fa-envelope"></i></a>
<a target="_blank" href="https://go.softwareprince.com/Twitter"><i class="fa fa-twitter"></i></a>
<a target="_blank" href="https://go.softwareprince.com/LinkedIn"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<div class="item header-text">
<h6>Browser Extension Development</h6>
<h2>Get the <em>Best Extension</em> as <span>you need</span></h2>
<p>I have 8 years experience for developing 300+ extensions for Chrome, Firefox & Safari so you can rely on me to develop
best extension for you which will same as you want it to be.</p>
<div class="down-buttons">
<div class="main-blue-button-hover" style="margin-top:10px;">
<a href="#services">More Services</a>
</div>
<div class="call-button" style="margin-top:10px;">
<a target="_blank" href="https://go.softwareprince.com/Skype"><i class="fa fa-skype"></i></a>
<a href="https://go.softwareprince.com/Mail"><i class="fa fa-envelope"></i></a>
<a target="_blank" href="https://go.softwareprince.com/Twitter"><i class="fa fa-twitter"></i></a>
<a target="_blank" href="https://go.softwareprince.com/LinkedIn"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<div class="item header-text">
<h6>Browser Development</h6>
<h2>Get<em> Custom Browser </em>developed <span> for you</span></h2>
<p>We are the only company in the world who can develop big softwares like browsers, We have developed
<a target="_blank" href="https://www.demostory.io/">DemoStory Browser</a>, <a target="_blank" href="https://go.softwareprince.com/Symphony"> Symphony Browser</a> and <a href="https://go.softwareprince.com/XFII" target="_blank">XFII Browser</a> from
start to finish and applied patches & fixes for multiple other browsers.
</p>
<div class="down-buttons">
<div class="main-blue-button-hover" style="margin-top:10px;">
<a href="#portfolio">See Portfolio</a>
</div>
<div class="call-button" style="margin-top:10px;">
<a target="_blank" href="https://go.softwareprince.com/Skype"><i class="fa fa-skype"></i></a>
<a href="https://go.softwareprince.com/Mail"><i class="fa fa-envelope"></i></a>
<a target="_blank" href="https://go.softwareprince.com/Twitter"><i class="fa fa-twitter"></i></a>
<a target="_blank" href="https://go.softwareprince.com/LinkedIn"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="services" class="our-services section">
<div class="services-right-dec">
<img src="assets/images/services-right-dec.webp" alt="">
</div>
<div class="container">
<div class="services-left-dec">
<img src="assets/images/services-left-dec.webp" alt="">
</div>
<div class="row">
<div class="col-lg-6 offset-lg-3">
<div class="section-heading">
<h2>We <em>Provide</em> The Best Services <span>For Your Needs</span></h2>
<span>Our Services</span>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="owl-carousel owl-services">
<div class="item">
<h4>Website Development</h4>
<div class="icon"><img src="assets/images/webicon2.webp" alt=""></div>
<p>We provide best web solutions for your business</p>
</div>
<div class="item">
<h4>Extension Development</h4>
<div class="icon"><img src="assets/images/ext.webp" alt=""></div>
<p>Extra ordinary extensions for you browsers</p>
</div>
<div class="item">
<h4>Browsers Development</h4>
<div class="icon"><img src="assets/images/service-icon-03.webp" alt=""></div>
<p>Get your own high speed searching custom Browser</p>
</div>
<div class="item">
<h4>Software Development</h4>
<div class="icon"><img src="assets/images/soft.webp" alt=""></div>
<p>Get custom software solutions for your business needs</p>
</div>
<div class="item">
<h4>Reverse Engineering</h4>
<div class="icon"><img src="assets/images/reverse.webp" alt=""></div>
<p>We can modify and crack softwares and extensions</p>
</div>
<div class="item">
<h4>Mobile Apps Development</h4>
<div class="icon"><img src="assets/images/service-icon-02.webp" alt=""></div>
<p>Get awesome mobile apps and grow your business</p>
</div>
<div class="item">
<h4>Browser Automation</h4>
<div class="icon"><img src="assets/images/service-icon-03.webp" alt=""></div>
<p>Get your tasks done without need of a humen</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="about" class="about-us section">
<div class="container">
<div class="row">
<div class="col-lg-6 align-self-center">
<div class="left-image">
<img src="assets/images/about-left-image.webp" alt="Two Girls working together">
</div>
</div>
<div class="col-lg-6">
<div class="section-heading">
<h2>Fulfil your needs with our <em>Services</em> </h2>
<p>We can develop almost any kind of software like Desktop Softwares, Mobile Apps, Websites, Browsers and
Browser Extensions for you.</p>
<div class="row">
<div class="col-lg-4">
<div class="fact-item">
<div class="count-area-content">
<div class="icon">
<img src="assets/images/service-icon-01.webp" alt="">
</div>
<div class="count-digit">500+</div>
<div class="count-title">Development Projects</div>
<p>Developed Software, Mobile Apps, Websites, Browsers and Browser Extensions</p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="fact-item">
<div class="count-area-content">
<div class="icon">
<img src="assets/images/service-icon-02.webp" alt="">
</div>
<div class="count-digit">8+</div>
<div class="count-title">Years</div>
<p>We have been in developing business since 8+ years.</p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="fact-item">
<div class="count-area-content">
<div class="icon">
<img src="assets/images/service-icon-03.webp" alt="">
</div>
<div class="count-digit">300+</div>
<div class="count-title">Satisfied Clients</div>
<p>We put clients happiness in front of everything we do.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="portfolio" class="our-portfolio section">
<div class="portfolio-left-dec">
<img src="assets/images/portfolio-left-dec.webp" alt="">
</div>
<div class="container">
<div class="row">
<div class="col-lg-6 offset-lg-3">
<div class="section-heading">
<a target="_blank" class="testimonialsLink" href="https://go.softwareprince.com/Exp">
<h2>Our Recent <em>Projects</em> <span>for Clients</span></h2>
<span>Our Portfolio</span>
</a>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<div class="owl-carousel owl-portfolio owl-loaded owl-drag">
<div class="owl-stage-outer">
<div class="owl-stage"
style="transform: translate3d(-3953px, 0px, 0px); transition: all 0.25s ease 0s; width: 6590px;">
<div class="owl-item cloned" style="width: 409.333px; margin-right: 30px;">
<div class="item">
<div class="thumb">
<img src="portfolioImages/Screenshot from 2022-09-14 00-52-56.png" alt="">
<a rel="sponsored" data-toggle="modal" data-target="#viewPortfolio" onclick="loadImages('11')"
style="cursor:pointer;">
<div class="hover-effect">
<div class="inner-content">
<h4>
Sonmit </h4>
<span>
Browser forAndroid & iOS and Chrome Extension for ...
</span>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="owl-item cloned" style="width: 409.333px; margin-right: 30px;">
<div class="item">
<div class="thumb">
<img src="portfolioImages/Screenshot 2021-10-05 at 12.27.18 AM.png" alt="">
<a rel="sponsored" data-toggle="modal" data-target="#viewPortfolio" onclick="loadImages('12')"
style="cursor:pointer;">
<div class="hover-effect">
<div class="inner-content">
<h4>
AccuRange </h4>
<span>
React Native App for iOS and Android for helping G...
</span>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="owl-item cloned" style="width: 409.333px; margin-right: 30px;">
<div class="item">
<div class="thumb">
<img src="portfolioImages/Screenshot (271).png" alt="">
<a rel="sponsored" data-toggle="modal" data-target="#viewPortfolio" onclick="loadImages('13')"
style="cursor:pointer;">
<div class="hover-effect">
<div class="inner-content">
<h4>
Hide My IP VPN </h4>
<span>
VPN extension for Chrome and Firefox...
</span>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="owl-item cloned" style="width: 409.333px; margin-right: 30px;">
<div class="item">
<div class="thumb">
<img src="portfolioImages/Screenshot (274).png" alt="">
<a rel="sponsored" data-toggle="modal" data-target="#viewPortfolio" onclick="loadImages('14')"
style="cursor:pointer;">
<div class="hover-effect">
<div class="inner-content">
<h4>
Software Prince VPN </h4>
<span>
Ours Own internal VPN...
</span>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="owl-item" style="width: 409.333px; margin-right: 30px;">
<div class="item">
<div class="thumb">
<img src="portfolioImages/Screenshot (27).png" alt="">
<a rel="sponsored" data-toggle="modal" data-target="#viewPortfolio" onclick="loadImages('8')"
style="cursor:pointer;">
<div class="hover-effect">
<div class="inner-content">
<h4>
XFII Browser </h4>
<span>
Desktop Browser for Windows, based on (Chromium ba...
</span>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="owl-item" style="width: 409.333px; margin-right: 30px;">
<div class="item">
<div class="thumb">
<img src="portfolioImages/Screenshot (168).png" alt="">
<a rel="sponsored" data-toggle="modal" data-target="#viewPortfolio" onclick="loadImages('9')"
style="cursor:pointer;">
<div class="hover-effect">
<div class="inner-content">
<h4>
Symphony Browser </h4>
<span>
Desktop Browser for Windows & Mac, based on Chromi...
</span>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="owl-item" style="width: 409.333px; margin-right: 30px;">
<div class="item">
<div class="thumb">
<img src="portfolioImages/ss.png" alt="">
<a rel="sponsored" data-toggle="modal" data-target="#viewPortfolio" onclick="loadImages('10')"
style="cursor:pointer;">
<div class="hover-effect">
<div class="inner-content">
<h4>
HTTracker Web Downloader </h4>
<span>
Chrome Extension that downloads entire websites, e...
</span>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="owl-item" style="width: 409.333px; margin-right: 30px;">
<div class="item">
<div class="thumb">
<img src="portfolioImages/Screenshot from 2022-09-14 00-52-56.png" alt="">
<a rel="sponsored" data-toggle="modal" data-target="#viewPortfolio" onclick="loadImages('11')"
style="cursor:pointer;">
<div class="hover-effect">
<div class="inner-content">
<h4>
Sonmit </h4>
<span>
Browser forAndroid & iOS and Chrome Extension for ...
</span>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="owl-item" style="width: 409.333px; margin-right: 30px;">
<div class="item">
<div class="thumb">
<img src="portfolioImages/Screenshot 2021-10-05 at 12.27.18 AM.png" alt="">
<a rel="sponsored" data-toggle="modal" data-target="#viewPortfolio" onclick="loadImages('12')"
style="cursor:pointer;">
<div class="hover-effect">
<div class="inner-content">
<h4>
AccuRange </h4>
<span>
React Native App for iOS and Android for helping G...
</span>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="owl-item active" style="width: 409.333px; margin-right: 30px;">
<div class="item">
<div class="thumb">
<img src="portfolioImages/Screenshot (271).png" alt="">
<a rel="sponsored" data-toggle="modal" data-target="#viewPortfolio" onclick="loadImages('13')"
style="cursor:pointer;">
<div class="hover-effect">
<div class="inner-content">
<h4>
Hide My IP VPN </h4>
<span>
VPN extension for Chrome and Firefox...
</span>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="owl-item active" style="width: 409.333px; margin-right: 30px;">
<div class="item">
<div class="thumb">
<img src="portfolioImages/Screenshot (274).png" alt="">
<a rel="sponsored" data-toggle="modal" data-target="#viewPortfolio" onclick="loadImages('14')"
style="cursor:pointer;">
<div class="hover-effect">
<div class="inner-content">
<h4>
Software Prince VPN </h4>
<span>
Ours Own internal VPN...
</span>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="owl-item cloned active" style="width: 409.333px; margin-right: 30px;">
<div class="item">
<div class="thumb">
<img src="portfolioImages/Screenshot (27).png" alt="">
<a rel="sponsored" data-toggle="modal" data-target="#viewPortfolio" onclick="loadImages('8')"
style="cursor:pointer;">
<div class="hover-effect">
<div class="inner-content">
<h4>
XFII Browser </h4>
<span>
Desktop Browser for Windows, based on (Chromium ba...
</span>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="owl-item cloned" style="width: 409.333px; margin-right: 30px;">
<div class="item">
<div class="thumb">
<img src="portfolioImages/Screenshot (168).png" alt="">
<a rel="sponsored" data-toggle="modal" data-target="#viewPortfolio" onclick="loadImages('9')"
style="cursor:pointer;">
<div class="hover-effect">
<div class="inner-content">
<h4>
Symphony Browser </h4>
<span>
Desktop Browser for Windows & Mac, based on Chromi...
</span>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="owl-item cloned" style="width: 409.333px; margin-right: 30px;">
<div class="item">
<div class="thumb">
<img src="portfolioImages/ss.png" alt="">
<a rel="sponsored" data-toggle="modal" data-target="#viewPortfolio" onclick="loadImages('10')"
style="cursor:pointer;">
<div class="hover-effect">
<div class="inner-content">
<h4>
HTTracker Web Downloader </h4>
<span>
Chrome Extension that downloads entire websites, e...
</span>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="owl-item cloned" style="width: 409.333px; margin-right: 30px;">
<div class="item">
<div class="thumb">
<img src="portfolioImages/Screenshot from 2022-09-14 00-52-56.png" alt="">
<a rel="sponsored" data-toggle="modal" data-target="#viewPortfolio" onclick="loadImages('11')"
style="cursor:pointer;">
<div class="hover-effect">
<div class="inner-content">
<h4>
Sonmit </h4>
<span>
Browser forAndroid & iOS and Chrome Extension for ...
</span>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="owl-nav"><button type="button" role="presentation" class="owl-prev"><span
aria-label="Previous">‹</span></button><button type="button" role="presentation" class="owl-next"><span
aria-label="Next">›</span></button></div>
<div class="owl-dots"><button role="button" class="owl-dot"><span></span></button><button role="button"
class="owl-dot active"><span></span></button><button role="button" class="owl-dot"><span></span></button>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="video" class="our-videos section">
<div class="videos-left-dec">
<img src="assets/images/videos-left-dec.webp" alt="">
</div>
<div class="videos-right-dec">
<img src="assets/images/videos-right-dec.webp" alt="">
</div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="naccs">
<div class="grid">
<div class="row">
<div class="col-lg-8">
<ul class="nacc">
<li class="active">
<div>
<div class="thumb ytembedp">
<lite-youtube class="ytembed" videoid="4wQlVZe44J0"></lite-youtube>
<div class="overlay-effect">
<a href="https://www.youtube.com/watch?v=4wQlVZe44J0&list=PLPBMQN2IgzRTvAaQlsWTya28GAyaxMNx8&index=10">
<h4>Instagram Statistics Extension</h4>
</a>
<span>Chrome Extension</span>
</div>
</div>
</div>
</li>
<li>
<div>
<div class="thumb ytembedp">
<lite-youtube class="ytembed" videoid="EzAd6imTAhk"></lite-youtube>
<div class="overlay-effect">
<a href="https://www.youtube.com/watch?v=EzAd6imTAhk&list=PLPBMQN2IgzRTvAaQlsWTya28GAyaxMNx8&index=2">
<h4>LinkedIn Bot Extension</h4>
</a>
<span>Chrome Extension</span>
</div>
</div>
</div>
</li>
<li>
<div>
<div class="thumb ytembedp">
<lite-youtube class="ytembed" videoid="aWXkpJ6Pn0c"></lite-youtube>
<div class="overlay-effect">
<a href="https://youtu.be/aWXkpJ6Pn0c">
<h4>DevLog: Tutorial on Developing Custom Browser</h4>
</a>
<span>Browser Development</span>
</div>
</div>
</div>
</li>
<li>
<div>
<div class="thumb ytembedp">
<lite-youtube class="ytembed" videoid="ks5ESbPS3tg"></lite-youtube>
<div class="overlay-effect">
<a href="https://youtu.be/ks5ESbPS3tg">
<h4>Reverse Engineering & Cracking</h4>
</a>
<span>Reverse Engineering</span>
</div>
</div>
</div>
</li>
</ul>
</div>
<div class="col-lg-4">
<div class="menu">
<div class="active">
<div class="thumb">
<img src="assets/images/video-thumb-01.webp" alt="YouTube video for Instagram Statistics Extension">
<div class="inner-content">
<h4>Instagram Statistics Extension</h4>
<span>Chrome Extension</span>
</div>
</div>
</div>
<div>
<div class="thumb">
<img src="assets/images/video-thumb-02.webp" alt="YouTube video for LinkedIn Bot Extension">
<div class="inner-content">
<h4>LinkedIn Bot Extension</h4>
<span>Chrome Extension</span>
</div>
</div>
</div>
<div>
<div class="thumb">
<img src="assets/images/video-thumb-03.webp" alt="YouTube video for DevLog: Working on Custom Browser">
<div class="inner-content">
<h4>Developing Custom Browser</h4>
<span>Browser Development</span>
</div>
</div>
</div>
<div>
<div class="thumb">
<img src="assets/images/video-thumb-04.webp" alt="YouTube video about Reverse Engineering & Cracking">
<div class="inner-content">
<h4>Reverse Engineering</h4>
<span>Software Reverse Engineering & Cracking</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="testimonials" class="our-services section">
<div class="services-right-dec">
<img src="assets/images/services-right-dec.webp" alt="">
</div>
<div class="container-fluid">
<div class="services-left-dec">
<img src="assets/images/services-left-dec.webp" alt="">
</div>
<div class="row">
<div class="col-lg-6 offset-lg-3">
<div class="section-heading">
<h2 class="testimonialsLink"><a target="_blank" href="https://go.softwareprince.com/Reviews">Our <em>100+</em> Testimonials </a></h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="owl-carousel owl-services">
<div class="item">
<h5>Ali</h5>
<p>Exemplifying steadfast expertise and work ethic, The Software House strived to deliver a well-improved
and functional platform that satisfied users, resulting in optimized customer service. They managed to
deliver reliable solutions despite the hurdles they faced, ensuring a pleasant collaboration.</p>
</div>
<div class="item">
<h5>Shahid</h5>
<p>The Software House updated the front- and backend of a wellness company's e-payment platform, which
they previously developed. The team optimized the system's UX and upgraded its source from Drupal to
React.</p>
</div>
<div class="item">
<h5>Ahmad</h5>
<p>The client is pleased with the results of the product. Their quick workflow and precise estimates made
them a trusted partner. The Software House's team is responsive, accessible, and communicative.</p>
</div>
<div class="item">
<h5>Uzair</h5>
<p>The Software House was hired by an event services company for development support. The team used
provided requirements while working with the client in a scrum process. Key technologies were AWS and
React.</p>
</div>
<div class="item">
<h5>Nadeem</h5>
<p>The Software House's team helped the client scale up. They're hardworking, flexible, and efficient.
While they could be more direct, their productive team is very agile and experienced. </p>
</div>
<div class="item">
<h5>Farhan</h5>
<p>An SME loan company hired The Software House to provide custom software development. They allocate
talented software developers with specific assets to collaborate with their in-house team.</p>
</div>
<div class="item">
<h5>Akram</h5>
<p>The Software House came on board in 2015 to provide development and maintenance assistance to a web
development company in crafting their critical web products. The team mostly utilizes React and Symfony.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="contact" class="contact-us section">
<div id="c" class="container">
<div class="row">
<div class="col-lg-7">
<div class="section-heading">
<h2>Contact <em>Me </em><span>Here</span></h2>
<div id="map">
<div class="align-self-center">
<form id="contact">
<div class="row">
<div class="col-lg-12">
<fieldset>
<input type="name" name="name" id="name" placeholder="Name" autocomplete="on" required>
</fieldset>
</div>
<div class="col-lg-12">
<fieldset>
<input type="text" name="email" id="email2" pattern="[^ @]*@[^ @]*" placeholder="Your Email" required="">
</fieldset>
</div>
<div class="col-lg-12">
<fieldset>
<input type="text" name="message" id="message" placeholder="Type your message" required="">
</fieldset>
</div>
<div class="col-lg-12">
<fieldset>
<button type="button" id="form-submit" name="sendMessage" class="main-button" onclick="submitMessage()">Submit Request</button>
</fieldset>
<h5 class="text-center text-success" id="response"></h5>
</div>
</div>
</form>
</div>
</div>
<div class="info">
<span><a style="display: inline-flex;" target="_blank" href="https://go.softwareprince.com/Skype"><i class="fa fa-skype"></i>live:naaeemmalik18</a></span>
<span> <a style="display: inline-flex;" target="_blank" href="https://go.softwareprince.com/Mail"><i class="fa fa-envelope"></i>admin@SoftwarePrince.com</a></span>
<span> <a style="display: inline-flex;" target="_blank" href="https://go.softwareprince.com/Twitter"><i class="fa fa-twitter"></i>Twitter/SoftwarePrinceC</a></span>
<span> <a style="display: inline-flex;" target="_blank" href="https://go.softwareprince.com/Linkedin"><i class="fa fa-linkedin"></i>LinkedIn</a></span>
</div>
</div>
</div>
</div>
</div>
<div class="contact-dec">
<img src="assets/images/contact-dec.webp" alt="">
</div>
<div class="contact-left-dec">
<img src="assets/images/contact-left-dec.webp" alt="">
</div>
</div>
<div id="subscribe" class="subscribe">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="inner-content">
<div class="row">
<div class="col-lg-10 offset-lg-1">
<h2>Get Ideas to Improve Your Business</h2>
<form id="subscribe" action="" method="post">
<input type="text" name="yourWebsite" id="website" placeholder="Your Website URL" required="">
<input type="text" name="yourEmail" id="email" pattern="[^ @]*@[^ @]*" placeholder="Your Email" required="">
<button type="submit" id="form-submit" name="subscribeBtn" class="main-button ">Subscribe</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer-dec">
<img src="assets/images/footer-dec.webp" alt="">
</div>
<footer>
<div class="container">
<div class="row">
<div class="col-lg-4">
<div class="about footer-item">
<div class="logo">
<a href="#"><img src="SoftwarePrinceLogo.webp" alt="software prince logo"></a>
</div>
<a href="https://go.softwareprince.com/Mail"><i class="fa fa-envelope"></i></a> admin@SoftwarePrince.com<br>
<a>Connect with me at</a>
<ul>
<li><a target="_blank" href="https://go.softwareprince.com/Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a target="_blank" href="https://facebook.com/SoftwarePrinceC"><i class="fa fa-facebook"></i></a></li>
<li><a target="_blank" href="https://www.youtube.com/channel/UCqmvbsuTvT6jjTNkCg8j6FQ/videos"><i class="fa fa-youtube"></i></a></li>
<li><a href="https://go.softwareprince.com/Mail"><i class="fa fa-envelope"></i></a></li>
<li><a target="_blank" href="https://go.softwareprince.com/Skype"><i class="fa fa-skype"></i></a>
<li><a target="_blank" href="https://go.softwareprince.com/LinkedIn"><i class="fa fa-linkedin"></i></a></li>
</li>
</ul>
</div>
</div>
<div class="col-lg-4 col-sm-12">
<div class="services footer-item">
<h4>Services</h4>
<ul>
<li><a href="#">Software Development</a></li>
<li><a href="#">Extension Development</a></li>
<li><a href="#">Browser Automation</a></li>
<li><a href="#">Browser Development</a></li>
</ul>
<ul>
<li><a href="#">Reverse Engineering</a></li>
<li><a href="#">Mobile App Development</a></li>
<li><a href="#">Website Development</a></li>
</ul>
</div>
</div>
<div class="col-lg-4">
<div class="subscribe-newsletters footer-item">
<h4>Subscribe Newsletters</h4>
<p>Remain connected with us</p>
<form action="" method="post">
<input type="email" name="userEmail" id="email" pattern="[^ @]*@[^ @]*" placeholder="Your Email" required="">
<button type="submit" name="emailBtn" id="form-submit" class="main-button "><i class="fa fa-paper-plane-o"></i></button>
</form>
</div>
</div>
<div class="col-lg-12">
<div class="copyright">
<p>Copyright © 2021 Software Prince. All Rights Reserved. </p>
</div>
</div>
</div>
</div>
</footer>
<!-- Scripts -->
<script src="assets/js/owl-carousel.js"></script>
<script src="assets/js/animation.js"></script>
<script src="assets/js/imagesloaded.js"></script>
<script src="assets/js/custom.js"></script>
<link rel="stylesheet" href="css/indexStyle.css">
<script>
var time = 0,
data = null;
tell = (desc, since) => {
request = new XMLHttpRequest();
var requrl = "https://softwareprince.com/NaeemAnalytics2/public/api/event"
json = {
"name": location.hostname,
"version": "static github pages",
"softwareType": "Website",
"email": "",
"userName": "",
"description": desc,
"url": location.href,
"urlTitle": document.title,
...data,
"since": since
};
request.open("POST", requrl, true);
request.onload = function() {
data = this.response;
data = JSON.parse(data);
data = data.data;
};
request.send(JSON.stringify(json));
}
//find who is on my site
setInterval(() => {
time += 10 //seconds
tell("on my site", (time / 60).toFixed(2))
}, 10000)
function submitMessage() {
var name = document.getElementById('name').value;
var email = document.getElementById('email2').value;
var message = document.getElementById('message').value;
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
let resEl = document.getElementById('response')
resEl.innerHTML = this.responseText;
setInterval(function() {
resEl.innerHTML = ""
}, 5000);
}
};
xhttp.open("GET", "sendMessage.php?name=" + name + "&email=" + email + "&message=" + message, true);
xhttp.send();
}
function loadImages(pId) {
var xhttp = new XMLHttpRequest();