-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
945 lines (682 loc) · 35.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MQL</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="More Qualified Leads UK">
<meta name="author" content="More Qualified Leads UK">
<meta name="verification" content="5854054d3c601a02f8c1da15c623bfaa" />
<!-- Standard Favicon-->
<link rel="shortcut icon" href="images/favicon/favicon.ico">
<!-- Standard iPhone Touch Icon-->
<link rel="apple-touch-icon" sizes="57x57" href="images/touchicons/apple-touch-icon-57-precomposed" />
<!-- Retina iPhone Touch Icon-->
<link rel="apple-touch-icon" sizes="114x114" href="assets/touchicons/apple-touch-icon-114-precomposed" />
<!-- Standard iPad Touch Icon-->
<link rel="apple-touch-icon" sizes="72x72" href="assets/touchicons/apple-touch-icon-72-precomposed" />
<!-- Retina iPad Touch Icon-->
<link rel="apple-touch-icon" sizes="144x144" href="assets/touchicons/apple-touch-icon-144-precomposed" />
<!-- Bootstrap CSS Files -->
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="bootstrap/css/bootstrap-theme.css" rel="stylesheet">
<!-- Custom Fonts Setup via Font-face CSS3 -->
<link href="fonts/fonts.css" rel="stylesheet">
<!-- CSS files for plugins -->
<link href="stylesheets/pace.preloader.css" rel="stylesheet">
<link href="stylesheets/animate.css" rel="stylesheet">
<link href="stylesheets/parallax.css" rel="stylesheet">
<link href="stylesheets/owl.carousel.css" rel="stylesheet">
<link href="stylesheets/owl.theme.css" rel="stylesheet">
<link href="stylesheets/venobox.css" rel="stylesheet" >
<link href="stylesheets/jquery.tweet.css" rel="stylesheet"/>
<link href="stylesheets/foliohover.css" rel="stylesheet">
<link href="stylesheets/fancymenu.css" rel="stylesheet">
<link href="stylesheets/intro.css" rel="stylesheet">
<!-- Main Template Styles -->
<link href="stylesheets/main.css" rel="stylesheet">
<!-- Main Template Responsive Styles -->
<link href="stylesheets/main-responsive.css" rel="stylesheet">
<!-- Main Template Retina Optimizaton Rules -->
<link href="stylesheets/main-retina.css" rel="stylesheet">
<!-- LESS stylesheet for managing color presets -->
<link rel="stylesheet/less" type="text/css" href="less/color-yellow.less">
<!-- LESS JS engine-->
<script src="less/less-1.5.0.min.js"></script>
<script src="javascripts/modernizr.custom.js"></script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="bootstrap/js/html5shiv.js"></script>
<script src="bootstrap/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="overlay overlay-hugeinc">
<button type="button" class="overlay-close">Close</button>
<nav>
<ul>
<li><a class="fancy-nav-close scroll" href="#slide1"><span>Home</span></a></li>
<li><a class="fancy-nav-close scroll" href="#about"><span>About</span></a></li>
<li><a class="fancy-nav-close scroll" href="#approach"><span>Our Approach</span></a></li>
<li><a class="fancy-nav-close scroll" href="#intel"><span>intel</span></a></li>
<li><a class="fancy-nav-close scroll" href="#testimonials"><span>Successes</span></a></li>
<li><a class="fancy-nav-close scroll" href="#featured"><span>Retargeting</span></a></li>
<li><a class="fancy-nav-close scroll" href="#partners"><span>Partners</span></a></li>
<li><a class="fancy-nav-close scroll" href="#news"><span>News</span></a></li>
<li><a class="fancy-nav-close scroll" href="#contact"><span>Contact</span></a></li>
<li><a href="privacy.html"><span>Privacy</span></a></li>
<li><a href="tos.html"><span>Terms of Service</span></a></li>
</ul>
</nav>
</div>
<div class="item intro-slide-bg-one">
<article class="promotional-area" >
<div class="promotional-area-inner promotional-area-inner-left dark text-left">
<h5>Hi, we are</h5>
<h1><span>More Qualified Leads</span></h1>
<h3>RTB Trade Desk</h3>
<a class="intro-trigger-button scroll" href="#about">Next</a>
</div>
</article>
</div>
<div class="static-side-navigation-wrap grey-bg">
<p><button id="trigger-overlay" type="button"></button></p>
<ul class="navigation">
<li data-slide="1" ></li>
<li data-slide="2"></li>
<li data-slide="3"></li>
<li data-slide="4"></li>
<li data-slide="5"></li>
<li data-slide="6"></li>
<li data-slide="7"></li>
<li data-slide="8"></li>
</ul>
</div>
<div class="slide intro intro-with-sidenav intro-video-bg text-center" id="slide1" data-stellar-background-ratio="0">
<article class="promo-area promo-area-color">
<div id="intro-carousel" class="intro-carousel owl-carousel owl-nav-sticky-wide">
<div class="item">
<div class="vertical-center emblem-area-wrap">
<div class="emblem-area">
<h3 class="dark">Agency</h3>
<h3 class="dark">Trade</h3>
<h3 class="dark">Desk</h3>
</div>
</div>
</div>
<div class="item">
<div class="intro-mask-white">
<div class="shoutout-area vertical-center">
<h1 class="dark">"We worship at the altar of direct-response"</h1>
<h6><span class="dark">Greg Renker</span></h6>
<p>co-Founder Guthy|Renker Inc.</p>
</div>
</div>
</div>
<div class="item">
<div class="intro-mask-dark">
<div class="shoutout-area vertical-center">
<h1 class="white">"Never use jargon words ...they are hallmarks of a pretentious ass"</h1>
<h6><span class="white">David Ogilvy</span></h6>
<p>Founder Ogilvy & Mather</p>
</div>
</div>
</div>
</div>
</article>
</div>
<!--End Slide 1-->
<!-- page-section : starts -->
<section id="about" class="about page-section">
<section class="inner-section">
<section class="container">
<div class="row">
<article class="col-md-12 text-center">
<h1 class="main-heading wow bounceInUp">About Us</h1>
<div class="liner"><span class="color-bg"></span></div>
<p class="promo-text-main wow slideInRight">We are a digital media-buying agency with firm roots in direct-mail and Print. We worship at the altar of direct-response. We regard branding campaigns as a sacrilege and a cop-out.</p>
</article>
</div>
</section>
<!-- container : ends -->
</section>
<!-- inner-section : ends -->
<section class="inner-section add-top-half inner-bg about-inner-bg">
<div id="about-carousel" class="about-carousel owl-carousel owl-nav-sticky-wide">
<div class="item">
<section class="container">
<div class="row wow slideInDown">
<article class="col-md-6 text-left about-inner-content dark-low-bg equal-height-one">
<h3 class="white">Don't lose your prospects</h3>
<div class="liner-small-left"><span class="color-bg"></span></div>
<p>Tablets, smart-wear, smart-phones, smart-TV's etc. With an ever-more increasing amount of devices it has become hard to stay connected with otherwise loyal customers. Our technology and marketing acumen ensures your ad-spend brings in ROI.</p>
</article>
<article class="col-md-6 text-left about-inner-content color-bg equal-height-one">
<a href="#" class="about-carousel-custom-next-trigger">
<h1 class="dark">Cross-Device Targeting</h1>
<div class="proceed-btn-wrap"><img title="more qualified leads" alt="more qualified leads media buying" src="images/proceed-white.png"/></div>
</a>
</article>
</div>
</section>
<!-- container : ends -->
</div>
<!-- item : ends -->
<div class="item">
<section class="container">
<div class="row">
<article class="col-md-3 text-left about-inner-content white-bg text-center equal-height-two">
<img title="tracking" alt="more qualified leads media buying" class="img-responsive" src="images/team/01.jpg"/>
<h3 class="dark">AdX Tracking</h3>
<div class="liner-small-center"><span class="color-bg"></span></div>
<p>App Tracking</p>
</article>
<article class="col-md-3 text-left about-inner-content dark-low-bg text-center equal-height-two">
<img title="tracking" alt="more qualified leads media buying" class="img-responsive" src="images/team/02.jpg"/>
<h3 class="white">Fiksu</h3>
<div class="liner-small-center"><span class="color-bg"></span></div>
<p>App marketing platform</p>
</article>
<article class="col-md-3 text-left about-inner-content white-bg text-center equal-height-two">
<img title="tracking" alt="more qualified leads media buying" class="img-responsive" src="images/team/03.jpg"/>
<h3 class="dark">hasOffers</h3>
<div class="liner-small-center"><span class="color-bg"></span></div>
<p>Desktop, mobile web & App Tracking</p>
</article>
<article class="col-md-3 text-left about-inner-content dark-low-bg text-center equal-height-two">
<img title="tracking" alt="more qualified leads media buying" class="img-responsive" src="images/team/04.jpg"/>
<h3 class="white">Cake</h3>
<div class="liner-small-center"><span class="color-bg"></span></div>
<p>Desktop, mobile web & App Tracking</p>
</article>
</div>
<div class="row">
<article class="col-md-3 text-left about-inner-content dark-low-bg text-center equal-height-two">
<img title="tracking" alt="more qualified leads media buying" class="img-responsive" src="images/team/05.jpg"/>
<h3 class="white">Apsalar</h3>
<div class="liner-small-center"><span class="color-bg"></span></div>
<p>App Tracking</p>
</article>
<article class="col-md-3 text-left about-inner-content white-bg text-center equal-height-two">
<img title="tracking" alt="more qualified leads media buying" class="img-responsive" src="images/team/06.jpg"/>
<h3 class="dark">Custom</h3>
<div class="liner-small-center"><span class="color-bg"></span></div>
<p>See a tracking platform not listed? We'd be happy to add integration, at no cost to you.</p>
</article>
<article class="col-md-6 text-left about-inner-content color-bg equal-height-two">
<a class="scroll" href="#testimonials">
<h1 class="dark">What our clients say about us</h1>
<div class="line-top-button"><img title="more qualified leads" alt="more qualified leads media buying" src="images/proceed-white.png"/></div>
</a>
</article>
</div>
</section>
<!-- container : ends -->
</div>
<!-- item : ends -->
</div>
<!-- carousel : ends -->
</section>
<!-- inner-section : ends -->
</section>
<!-- page-section : ends -->
<!-- page-section : starts -->
<section id="approach" class="about page-section">
<section class="inner-section">
<section class="container">
<div class="row">
<article class="col-md-4 text-center">
<h1 class="main-heading wow bounceInUp">Data Analysis</h1>
<div class="liner"><span class="color-bg"></span></div>
<p class="wow bounceInUp">Industry-standard S2S postback tracking; Easily integrate with Fiksu, Cake, Apsalar, HasOffers AppsFlyer, Flurry. Other integrations on request. </p>
</article>
<article class="col-md-4 text-center">
<h1 class="main-heading wow bounceInUp">Direct Response</h1>
<div class="liner"><span class="color-bg"></span></div>
<p class="wow bounceInUp">The great names in DR, such as: David Ogilvy, Claude Hopkins, Eugene Schwartz, Rosser Reeves, Halbert, John Caples, ...are our inspiration. Swipe files are our bedtime reading</p>
</article>
<article class="col-md-4 text-center">
<h1 class="main-heading wow bounceInUp">Programmatic</h1>
<div class="liner"><span class="color-bg"></span></div>
<p class="wow bounceInUp">buy using 3rd Party DMP's and 1st Party CRM-data-integration</p>
</article>
</div>
</section>
<!-- container : ends -->
</section>
<!-- inner-section : ends -->
<!--Mast-wrap : starts-->
<section id="intel" class="mast-wrap overlay-close page-section">
<section class="call-to-action custom-bg-yellow ">
<div class="container">
<div id="stats-carousel" class="stats-carousel owl-carousel owl-nav-sticky-wide">
<div class="item stats-carousel-item">
<div class="row">
<article class="col-md-12">
<h1 class="white"><span>Need Industry intel?</span>We have compiled some of the most accurate insights in the lead-gen industry.</h1>
<div class="liner"><span class="dark-bg"></span></div>
<h4 class="dark">a survey of 16,819 banner-ads, from 42,300 websites and apps, over 365 days</h4>
<div><a href="http://taptapmobile.github.io/charts/index.html" class="btn btn-presence btn-presence-white presence-ease">Show me the Stats</a></div>
</article>
</div>
</div>
<div class="item stats-carousel-item">
<div class="row stats-wrap">
<article class="col-md-4 stats-block wow slideInLeft">
<img title="more qualified leads" alt="more qualified leads media buying" src="images/stats/01.png"/>
<h2 class="stats-count">16,819</h2>
<p class="stats-des"><span>Display ads</span></p>
</article>
<article class="col-md-4 stats-block wow slideInDown">
<img title="more qualified leads" alt="more qualified leads media buying" src="images/stats/02.png"/>
<h2 class="stats-count">42,300</h2>
<p class="stats-des"><span>sites scraped</span></p>
</article>
<article class="col-md-4 stats-block wow slideInRight">
<img title="more qualified leads" alt="more qualified leads media buying" src="images/stats/03.png"/>
<h2 class="stats-count">365</h2>
<p class="stats-des"><span>day view</span></p>
</article>
</div>
</div>
<!-- item:ends -->
<!-- item:ends -->
</div>
</div>
</section>
<!-- call-to-action : ends -->
<!-- page-section : starts -->
<section id="testimonials" class="testimonials separator-section">
<section class="inner-section">
<section class="container">
<div class="row">
<article class="col-md-12 text-center">
<div id="testimonials-carousel" class="testimonials-carousel owl-carousel owl-nav-sticky-wide">
<div class="item testimonial-block">
<div class="user-thumb"><img title="more qualified leads" alt="more qualified leads media buying" src="images/user.png"/></div>
<h3>"We created 200 video Testimonials in under 3 weeks. It was incredible."</h3>
<div class="liner-small-center"><span class="color-bg"></span></div>
<h5><span>Grant Cardone</span></h5>
<a class="btn btn-presence btn-presence-color presence-ease" href="http://grantcardone.com">Cardone University</a>
</div>
<div class="item testimonial-block">
<div class="user-thumb"><img title="more qualified leads" alt="more qualified leads media buying" src="images/user.png"/></div>
<h3>"I personally recommend you get in touch with Jen and see what he can do for your marketing. Feel free to contact me for a personal reference"</h3>
<div class="liner-small-center"><span class="color-bg"></span></div>
<h5><span>Patrick Valtin</span></h5>
<a class="btn btn-presence btn-presence-color presence-ease" href="http://patrickvaltin.com">patrickvaltin.com</a>
</div>
</div>
</article>
</div>
</section>
<!-- container : ends -->
</section>
<!-- inner-section : ends -->
</section>
<!-- featured-roller -->
<section id="featured" class="featured featured-roller text-center">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="white">Full Retargeting suite: <br>GDN, Fb, Twitter, AOL/MS, ...</h3>
<h5><span>Download Media Kit<span></h5>
<img class="img-responsive wow fadeInUpBig" data-wow-offset="200" src="images/mobile_rtgt.png" alt="more qualified leads media buying" title="more qualified leads">
</div>
</div>
</div>
</section>
<!-- page-section : starts -->
<section id="partners" class="services page-section">
<section class="inner-section">
<section class="container">
<div class="row">
<article class="col-md-12 text-center wow pulse">
<h1 class="main-heading">Supply Partners</h1>
<div class="liner"><span class="color-bg"></span></div>
<p class="promo-text">Vetted suppliers of quality traffic we partner with:</p>
</article>
</div>
</section>
<!-- container : ends -->
</section>
<!-- inner-section : ends -->
<section class="inner-section add-top-half">
<section class="container">
<div class="row wow slideInLeft">
<article class="col-md-4 text-left services-inner-content grey-bg text-center equal-height-three">
<img title="more qualified leads" alt="more qualified leads media buying" class="img-responsive" src="images/microsoft.jpg"/>
<h3 class="dark">Microsoft Ad Exchange</h3>
<div class="liner-small-center"><span class="color-bg"></span></div>
<p>Inventory from all the Microsoft properties: XBox, MSN, Outlook.com, Windows 8, Skype, Yahoo Bing Network </p>
</article>
<article class="col-md-4 text-left services-inner-content dark-low-bg text-center equal-height-three">
<img title="more qualified leads" alt="more qualified leads media buying" class="img-responsive" src="images/openx.jpg"/>
<h3 class="white">OpenX</h3>
<div class="liner-small-center"><span class="color-bg"></span></div>
<p>Desktop & Mobile inventory</p>
</article>
<article class="col-md-4 text-left services-inner-content grey-bg text-center equal-height-three">
<img title="more qualified leads" alt="more qualified leads media buying" class="img-responsive" src="images/dclick.jpg"/>
<h3 class="dark">DoubleClick</h3>
<div class="liner-small-center"><span class="color-bg"></span></div>
<p>AdWords, as well as doubleclick-only inventory</p>
</article>
</div>
<div class="row wow slideInRight">
<article class="col-md-4 text-left services-inner-content dark-low-bg text-center equal-height-three">
<img title="more qualified leads" alt="more qualified leads media buying" class="img-responsive" src="images/logo-appnexus.gif"/>
<h3 class="white">AppNexus</h3>
<div class="liner-small-center"><span class="color-bg"></span></div>
<p>buy through our AppNexus seat</p>
</article>
<article class="col-md-4 text-left services-inner-content grey-bg text-center equal-height-three">
<img title="more qualified leads" alt="more qualified leads media buying" class="img-responsive" src="images/ebay.jpg"/>
<h3 class="dark">e-bay</h3>
<div class="liner-small-center"><span class="color-bg"></span></div>
<p>Quality desktop & mobile traffic.</p>
</article>
<article class="col-md-4 text-left services-inner-content color-bg equal-height-three">
<a class="scroll" href="#contact">
<h1 class="white">Request a Quote Today</h1>
<div class="line-top-button"><img title="more qualified leads" alt="more qualified leads media buying" src="images/proceed-white.png"/></div>
</a>
</article>
</div>
<div class="row wow slideInLeft">
<article class="col-md-4 text-left services-inner-content grey-bg text-center equal-height-three">
<img title="more qualified leads" alt="more qualified leads media buying" class="img-responsive" src="images/fbx.jpg"/>
<h3 class="dark">FbX</h3>
<div class="liner-small-center"><span class="color-bg"></span></div>
<p>Mobile, desktop and re-targeting - news stream and right-side ads</p>
</article>
<article class="col-md-4 text-left services-inner-content dark-low-bg text-center equal-height-three">
<img title="more qualified leads" alt="more qualified leads media buying" class="img-responsive" src="images/mopub.jpg"/>
<h3 class="white">mopub</h3>
<div class="liner-small-center"><span class="color-bg"></span></div>
<p>Mobile traffic</p>
</article>
<article class="col-md-4 text-left services-inner-content grey-bg text-center equal-height-three">
<img title="more qualified leads" alt="more qualified leads media buying" class="img-responsive" src="images/smaato.jpg"/>
<h3 class="dark">Smaato</h3>
<div class="liner-small-center"><span class="color-bg"></span></div>
<p>Mobile Network</p>
</article>
</div>
<div class="row wow slideInRight">
<article class="col-md-4 text-left services-inner-content dark-low-bg text-center equal-height-three">
<img title="more qualified leads" alt="more qualified leads media buying" class="img-responsive" src="images/ubimo.jpg"/>
<h3 class="white">Ubimo</h3>
<div class="liner-small-center"><span class="color-bg"></span></div>
<p>GEO-location-based targeting, mobile </p>
</article>
<article class="col-md-4 text-left services-inner-content grey-bg text-center equal-height-three">
<img title="more qualified leads" alt="more qualified leads media buying" class="img-responsive" src="images/tw.jpg"/>
<h3 class="dark">Twitter Advertising</h3>
<div class="liner-small-center"><span class="color-bg"></span></div>
<p>Promoted Tweets & Retargeting</p>
</article>
<article class="col-md-4 text-left services-inner-content dark-low-bg text-center equal-height-three">
<img title="more qualified leads" alt="more qualified leads media buying" class="img-responsive" src="images/rubicon.jpg"/>
<h3 class="white">Rubicon Pjt</h3>
<div class="liner-small-center"><span class="color-bg"></span></div>
<p>ad inventory on Rolling Stone magazine, and other top-tier placements </p>
</article>
</div>
</section>
<!-- container : ends -->
</section>
<!-- inner-section : ends -->
</section>
</section>
<!-- inner-section : ends-->
</section>
<!-- page-section : ends -->
<!-- page-section : starts -->
<section id="news" class="news page-section color-bg">
<section class="inner-section">
<section class="container">
<div class="row">
<article class="col-md-12 text-center">
<h1 class="main-heading white">News</h1>
<div class="liner"><span class="dark-bg"></span></div>
<p class="promo-text white">Periodically we compile and release our renowned "media buying landscape" reports. <br> These show relative qunatities sizes of traffic among the various vendors along specific verticals and niches</p>
</article>
</div>
</section>
<!-- container : ends -->
</section>
<!-- inner-section : ends -->
<section class="inner-section add-top-half">
<section class="container">
<div class="row news-list-item">
<article class="col-md-3 text-left news-inner-content grey-bg wow slideInLeft">
<h4><span class="news-date color">25th</span> <br/><span class="news-month">Feb.</span> 2015</h4>
<h6 class="news-author color">by Jen Brannstrom</h6>
</article>
<article class="col-md-9 text-left news-inner-content white-bg wow slideInRight">
<h3 class="dark">Optimising CPM on AppNexus</h3>
<div class="liner-small-left"><span class="color-bg"></span></div>
<p>How to “Optimise to a predicted CPC goal”, while still only paying your fixed CPM rate</p>
<a class="btn btn-presence btn-presence-color presence-ease" href="http://blog.morequalifiedleads.co.uk/articles/appnexus_optimiser/">Read Full article</a>
</article>
</div>
<div class="row news-list-item">
<article class="col-md-3 text-left news-inner-content grey-bg wow slideInLeft">
<h4><span class="news-date color">9th</span> <br/><span class="news-month">July</span> 2014</h4>
<h6 class="news-author color">by Jen Brannstrom</h6>
</article>
<article class="col-md-9 text-left news-inner-content white-bg wow slideInRight">
<h3 class="dark">UK Dating on AdWords display</h3>
<div class="liner-small-left"><span class="color-bg"></span></div>
<p>The UK dating scene has exploded in recent years. Proportionately the UK has more display that any Russia and the US combined!</p>
<a class="btn btn-presence btn-presence-color presence-ease" href="http://www.taptap.mobi/charts/dating.html">Read Full Report, no opt-in</a>
</article>
</div>
<div class="row news-list-item">
<article class="col-md-3 text-left news-inner-content grey-bg wow slideInLeft">
<h4><span class="news-date color">11th</span> <br/><span class="news-month">June</span> 2014</h4>
<h6 class="news-author color">by Jen Brannstrom</h6>
</article>
<article class="col-md-9 text-left news-inner-content dark-low-bg wow slideInRight">
<h3 class="white">Canada: what is running in AdWords country-wide</h3>
<div class="liner-small-left"><span class="color-bg"></span></div>
<p>An in-depth look at what is runingn canada on display.
What are the biggest niches in canada? Which vertical is the toughest?
What's proven to work in Canada?</p>
<a class="btn btn-presence btn-presence-color presence-ease" href="http://www.taptap.mobi/charts/canada.html">Read Full Report, no opt-in</a>
</article>
</div>
<div class="row news-list-item">
<article class="col-md-3 text-left news-inner-content grey-bg wow slideInLeft">
<h4><span class="news-date color">17th</span> <br/><span class="news-month">May</span> 2014</h4>
<h6 class="news-author color">by Jen Brannstrom</h6>
</article>
<article class="col-md-9 text-left news-inner-content white-bg wow slideInRight">
<h3 class="dark">AdWords display Network: its real reach</h3>
<div class="liner-small-left"><span class="color-bg"></span></div>
<p>A full statistical representation and breakdown of AdWords in 15 countries. See what is most popular, preferred banner sizes, longest-running display ads, etc. </p>
<a class="btn btn-presence btn-presence-color presence-ease" href="http://www.taptap.mobi/charts/index.html">Read Full Report, no opt-in</a>
</article>
</div>
</section>
<!-- container : ends -->
</section>
<!-- inner-section : ends -->
</section>
<!-- page-section : ends -->
<!-- page-section : starts -->
<section id="contact" class="contact custom-bg-yellow separator-section">
<section class="inner-section">
<section class="container">
<div class="row">
<article class="col-md-12 text-center">
<h1 class="main-heading white wow slideInDown">Contact Us</h1>
<div class="liner"><span class="dark-bg"></span></div>
<p class="promo-text white wow slideInDown">If you are a mobile traffic vendor, please do not hesitate to contact us.</p>
</article>
</div>
<div class="row">
<article class="col-md-12 text-center">
<div id="contact-carousel" class="contact-carousel owl-carousel owl-nav-sticky-wide">
<div class="item contact-block">
<div class="email-thumb"><img title="more qualified leads" alt="more qualified leads media buying" src="images/email.png"></div>
<a class="email-us presence-ease" href="#">[email protected]</a>
<p class="contact-subline"><span>We are online from 09.00 - 18.00, GMT</span></p>
<a class="btn btn-presence btn-presence-white presence-ease contact-form-expand contact-carousel-custom-next-trigger" href="#">Show Contact Form</a>
</div>
<!-- contact-block:ends -->
<div class="item contact-block contact-mail-wrap">
<div class="row">
<article class="col-md-12">
<div class="alert alert-error error" id="fname">
<p>What shall we call you?</p>
</div>
<div class="alert alert-error error" id="fmail">
<p>Please provide a valid email</p>
</div>
<div class="alert alert-error error" id="fmsg">
<p>Tell us how we can help you below</p>
</div>
</article>
</div>
<form name="myform" id="contactForm" action="sendcontact.php" enctype="multipart/form-data" method="post">
<div class="row">
<article class="col-md-12 col-sm-12" data-scrollreveal="move 200px and enter from the left">
<input type="text" placeholder="Your Name" id="name" name="name" size="100">
</article>
</div>
<div class="row">
<article class="col-md-12 col-sm-12" data-scrollreveal="move 200px and enter from the right">
<input type="text" placeholder="Valid email ID" name="email" id="email" size="30">
</article>
</div>
<div class="row add-top-small" >
<article class="col-md-12" data-scrollreveal="move 200px and enter from the bottom">
<textarea placeholder="Your Message" name="message" cols="40" rows="3" id="msg"></textarea>
<div class="btn-wrap">
<button class="btn btn-presence btn-presence-white presence-ease" id="submit" name="submit" type="submit">Send Message</button>
</div>
</article>
</div>
</form>
</div>
<!-- contact-block:ends -->
<div class="item contact-block">
<div class="newsletter-thumb"><img title="more qualified leads" alt="more qualified leads media buying" src="images/newletter.png"></div>
<a class="email-us presence-ease" href="http://taptap.us8.list-manage.com/subscribe?u=7cdde82a7bc3d51272dd8c555&id=9b2ab4520a">Subscribe Today</a>
<p class="contact-subline"><span>We put out a newsletter very irregularly, but when we do they're good</span></p>
<a class="btn btn-presence btn-presence-white presence-ease" href="http://taptap.us8.list-manage.com/subscribe?u=7cdde82a7bc3d51272dd8c555&id=9b2ab4520a">Grab Newsletter</a>
</div>
<!-- contact-block:ends -->
<div class="item contact-block">
<div class="twitter-thumb"><img title="more qualified leads" alt="more qualified leads media buying" src="images/tweet.png"></div>
<a class="email-us presence-ease" href="#">Would you like some curated Tweets?</a>
<p class="contact-subline"><span>Our twitter feed has curated content from all the best media buying feeds</span></p>
<a class="btn btn-presence btn-presence-white presence-ease" href="#">@jenbrannstrom</a>
</div>
<!-- contact-block:ends -->
</div>
</article>
</div>
<!-- row : ends -->
</section>
<!-- container : ends -->
</section>
<!-- inner-section : ends -->
</section>
<footer id="foot" class="mastfoot">
<section class="inner-section foot-top">
<section class="container">
<div class="row">
<article class="col-md-6 credentials-wrap">
<ul class="credentials text-left">
<li><a href="mailto:[email protected]"><img title="email us" alt="more qualified leads media buying" src="images/social/mail.png"/><span class="credential-text">[email protected]</span></a></li>
<li><a href="#"><img title="more qualified leads" alt="more qualified leads media buying" src="images/social/phone.png"/><span class="credential-text">+44.203.769.5403</span></a></li>
</ul>
</article>
<article class="col-md-6 credentials-wrap">
<ul class="credentials text-right">
<li><a href="#"><img title="our location" alt="our location" src="images/social/locate.png"/><span class="credential-text">75 West Street, East Grinstead, West Sussex, England</span></a></li>
</ul>
</article>
</div>
</section>
</section>
<section class="inner-section foot-bottom">
<section class="container">
<div class="row">
<article class="col-md-6 social-wrap">
<ul class="social text-left">
<li><a href="https://www.linkedin.com/company/597824"><img title="Linkedin" alt="more qualified leads Linkedin" src="images/social/linkedin.png"/></a></li>
<li><a href="twitter.com/jenbrannstrom"><img title="Tweets" alt="more qualified leads tweets" src="images/social/twitter.png"/></a></li>
<li><a href="#"><img title="Google+" alt="more qualified leads Google +" src="images/social/google.png"/></a></li>
<li><a href="https://github.com/qualifiedleads"><img title="Github repo's" alt="more qualified leads Github repo's" src="images/social/github.png"/></a></li>
<li><form action="https://bitpay.com/checkout" method="post" >
<input type="hidden" name="action" value="checkout" />
<input type="hidden" name="posData" value="" />
<input type="hidden" name="data" value="YqLbZF7BMbZZBXmMLAsY01mTPata4zFe9WAxM9kKxDwDhg0Wwrr7v0wtjfBp67qHfCbd9Q5uQhb+TJxgLpl0ex1nsek0Il+C4+CQML1KJQAk07tjQUflCSDjxEbyt6Omg8Y66hSrt3gTN0kmfb39tGpxGGUh1bo2IG18WgiXzvsvvNac4q2o4bCnTQijfp8ylYiY9o3i/5HDm1rjZhWoZaidffcg9JEqsgFZbLJeA0uVqNoJNupPYdyhVQ6dC5s9" />
<input type="image" src="https://bitpay.com/img/button8.png" border="0" name="submit" alt="BitPay, the easy way to pay with bitcoins." >
</form></li>
<li>
<a href="https://mixpanel.com/f/partner"><img src="//cdn.mxpnl.com/site_media/images/partner/badge_blue.png" alt="Mobile Analytics" /></a></li>
</ul>
</article>
<article class="col-md-6 credits-wrap text-right">
<p>Made with you in mind</p>
<p>Copyright © 2018 More Qualified Leads. All rights reserved.</p>
</article>
</div>
</section>
</section>
</footer>
</section>
<!-- Mast-wrap:ends -->
<!-- Core JS Libraries -->
<script src="bootstrap/js/jquery.js" type="text/javascript"></script>
<script src="javascripts/jquery.easing.1.3.js" type="text/javascript"></script>
<script src="bootstrap/js/bootstrap.js" ></script>
<!-- JS Plugins -->
<script src="javascripts/pace.min.js"></script>
<script src="javascripts/retina.js"></script>
<script src="javascripts/device.min.js"></script>
<script src="javascripts/owl.carousel.js"></script>
<script src="javascripts/waypoints.min.js"></script>
<script src="javascripts/jquery.tweet.js"></script>
<script src="javascripts/okvideo.js"></script>
<script src="javascripts/jquery.mixitup.js"></script>
<script src="javascripts/flexslider.js" ></script>
<script src="javascripts/venobox.min.js"></script>
<script src="javascripts/smooth-scroll.js"></script>
<script src="javascripts/form-validation.js"></script>
<script src="javascripts/classie.js"></script>
<script src="javascripts/fancymenu-rollin.js"></script>
<!-- Parallax Plugins Setup -->
<script src="javascripts/jquery.parallax.min.js"></script>
<script src="javascripts/parallax-init.js"></script>
<!-- Scroll Animations Setup -->
<script src="javascripts/wow.js"></script>
<script src="javascripts/animations-init.js"></script>
<!-- For videos in showcase slides -->
<script src="javascripts/showcase-video.js"></script>
<!-- Custom Scripts Setup -->
<script src="javascripts/bgvideo-init.js" ></script>
<script src="javascripts/carousel-init.js" ></script>
<script src="javascripts/portfolio.js"></script>
<script src="javascripts/intro.js"></script>
<script src="javascripts/venobox-init.js"></script>
<script src="javascripts/main.js"></script>
<script type="text/javascript">
var _iub = _iub || [];
_iub.csConfiguration = {
cookiePolicyId: 326205,
siteId: 394739,
lang: "en"
};
(function (w, d) {
var loader = function () { var s = d.createElement("script"), tag = d.getElementsByTagName("script")[0]; s.src = "//cdn.iubenda.com/cookie_solution/iubenda_cs.js"; tag.parentNode.insertBefore(s, tag); };
if (w.addEventListener) { w.addEventListener("load", loader, false); } else if (w.attachEvent) { w.attachEvent("onload", loader); } else { w.onload = loader; }
})(window, document);
</script>
</body>
</html>