-
Notifications
You must be signed in to change notification settings - Fork 0
/
cartoon.html
891 lines (796 loc) · 69.8 KB
/
cartoon.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-76453850-1', 'auto');
ga('send', 'pageview');
</script>
<!-- Analytics end -->
<meta http-equiv="refresh" content="2;url=http://www.themeatly.com/comic-roll/2015/9/10/m50vieyei6kpk1ebutff6pu4v82i7m">
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<title>Vlaros.com</title>
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="css/articles.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="google-site-verification" content="OgnQV5HogNppWJJmW-UV5ULbdeNjVKOMdyLY9wrp2R4" />
<meta name="description" content="Vlaros is your home for everything tech.">
<meta name="keywords" content="vlaros, vlaros.com, tech, reviews, games, tutorials">
<meta property="og:title" content="Vlaros.com" />
<meta property="og:site_name" content="Vlaros"/>
<meta property="og:description" content="Vlaros is your home for everything tech." />
<meta property="og:image" content="https://clashroyale.com/uploaded-images/CR_facebook_share_02.jpg?mtime=20160104014218" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@-twittername-">
<meta name="twitter:creator" content="@-twittername-">
<meta name="twitter:title" content="Vlaros is your home for everything tech.">
<meta name="twitter:description" content="Vlaros.com is your home for everything tech. We have reviews, tutorials, games and much, much more.">
<meta name="twitter:image" content="https://clashroyale.com/uploaded-images/CR_facebook_share_02.jpg?mtime=20160104014218" />
<!-- <link rel="apple-touch-icon" sizes="57x57" href="/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" href="/favicon/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/favicon/android-icon-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="/favicon/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="/favicon/favicon-16x16.png" sizes="16x16"> -->
<link rel="icon" href="images/favicon.ico" />
<link rel="manifest" href="/favicon/manifest.json">
<meta name="apple-mobile-web-app-title" content="Vlaros.com">
<meta name="application-name" content="Vlaros.com">
<meta name="theme-color" content="#ffffff">
<!-- Analytics -->
<!-- /Analytics -->
</head>
<body>
<div id="app">
<div class="App">
<!-- header start -->
<header class="Header js-header">
<div class='Header-bg'></div>
<div class="Navbar-holder">
<div class='Navbar-backdrop'></div>
<div class='Navbar-scroller'>
<div class="Navbar-FixedElements Navbar-wrapper">
<a href="/" class="Navbar-logo Navbar-logo-outside js-click" title="Home" data-category="Header" data-label="Logo">
<picture class="">
<source data-srcset="logo.svg, logo.svg 2x" media="(max-width: 599px)">
<source data-srcset="logo.svg, logo.svg 2x" media="(max-width: 1023px)">
<source data-srcset="logo.svg, logo.svg 2x" media="(max-width: 1439px)">
<source data-srcset="logo.svg, logo2.svg 2x" media="(min-width: 1440px)">
<img data-src="logo.svg" class="lazyload" alt="Logo" draggable="false">
</picture>
</a>
<div class="Navbar-hamburger-bg" ref="NavbarBg"></div>
<div class="Navbar-hamburger-button">
<div class="Navbar-hamburger">
<div class="Navbar-hamburger-line Navbar-hamburger-line1"></div>
<div class="Navbar-hamburger-line Navbar-hamburger-line2"></div>
<div class="Navbar-hamburger-line Navbar-hamburger-line3"></div>
<div class="Navbar-hamburger-line Navbar-hamburger-line4"></div>
</div>
</div>
</div>
<nav class='Navbar' ref="Navbar">
<div class='Navbar-background' ref="navBg">
<div class="Navbar-wrapper" ref="navbarWrapper">
<div class='Navbar-nav'>
<div class="Navbar-primarynav" ref="primaryNav">
<a class="Navbar-item js-click " title="Announcement" href="/blog/news/announcement" data-category="Nav" data-label="Announcement">Announcement</a>
<a class="Navbar-item js-click " title="About the Game" href="/blog/news/about-the-game" data-category="Nav" data-label="About the Game">About the Game</a>
<a class="Navbar-item js-click Navbar-item-faq" title="FAQ" href="/#faq" data-category="Nav" data-label="FAQ">FAQ</a>
<a class="Navbar-item js-click " title="Forum" href="http://supr.cl/ClashRoyaleForum" target="_blank" data-category="Nav" data-label="Forum">Forum</a>
</div>
<div class="Navbar-secondarynav">
<a class="Navbar-item js-click" title="Support" href="https://supercell.helpshift.com/a/clash-royale/" target="_blank" data-category="Nav" data-label="Support">Support</a>
<a class="Navbar-item js-click" title="Parent's Guide" href="http://supercell.com/en/parents/" target="_blank" data-category="Nav" data-label="Parent's Guide">Parent's Guide</a>
<a class="Navbar-item js-click" title="Terms of Service" href="http://supercell.com/en/terms-of-service/" target="_blank" data-category="Nav" data-label="Terms of Service">Terms of Service</a>
<a class="Navbar-item js-click" title="Privacy Policy" href="http://supercell.com/en/privacy-policy/" target="_blank" data-category="Nav" data-label="Privacy Policy">Privacy Policy</a>
</div>
<div class="Navbar-download">
<a href="#" class="js-open-popup js-click" data-category="Nav" data-label="Download">
<!--<img src="https://clashroyale.com/uploaded-images/appstore-badge.png?mtime=20160224175317" alt="App Store Download" />-->
</a>
</div>
</div>
</div>
</div>
</nav>
</div>
</div>
<!-- <div class="Languagebar-mobile">
<select class="Languagebar-language-list">
<option value="http://option1.com" selected>French</option>
<option value="http://option2.com">English</option>
<option value="http://option3.com">Russian</option>
</select>
<div class="Languagebar-arrow">
<svg viewBox="0 0 23 23" class="icon-arrow">
<g>
<path d="M18.8,10.1L9.3,0.8c-1.1-1.1-2.8-1.1-3.9,0c-1.1,1.1-1.1,2.8,0,3.8l7.6,7.4l-7.6,7.4
c-1.1,1.1-1.1,2.8,0,3.8c1.1,1.1,2.8,1.1,3.9,0l9.5-9.3C19.9,12.9,19.9,11.2,18.8,10.1z"></path>
</g>
</svg>
</div>
</div> -->
<!--
<div class="Languagebar-holder">
<div class='Languagebar-backdrop'></div>
<div class='Languagebar-scroller'>
<div class="Languagebar-FixedElements Languagebar-wrapper">
<a
href='/'
class="Languagebar-logo Languagebar-logo-outside js-click"
title="Home"
data-category="Header" data-label="Logo"
>
English
</a>
<a class="Languagebar-language">
<div class="Languagebar-arrow-left">
<svg viewBox="0 0 23 23" class="icon-arrow">
<g>
<path d="M18.8,10.1L9.3,0.8c-1.1-1.1-2.8-1.1-3.9,0c-1.1,1.1-1.1,2.8,0,3.8l7.6,7.4l-7.6,7.4
c-1.1,1.1-1.1,2.8,0,3.8c1.1,1.1,2.8,1.1,3.9,0l9.5-9.3C19.9,12.9,19.9,11.2,18.8,10.1z"></path>
</g>
</svg>
</div>
English
<div class="Languagebar-arrow-right">
<svg viewBox="0 0 23 23" class="icon-arrow">
<g>
<path d="M18.8,10.1L9.3,0.8c-1.1-1.1-2.8-1.1-3.9,0c-1.1,1.1-1.1,2.8,0,3.8l7.6,7.4l-7.6,7.4
c-1.1,1.1-1.1,2.8,0,3.8c1.1,1.1,2.8,1.1,3.9,0l9.5-9.3C19.9,12.9,19.9,11.2,18.8,10.1z"></path>
</g>
</svg>
</div>
</a>
<div class="Languagebar-hamburger-bg" ref="LanguagebarBg"></div>
<div class="Languagebar-hamburger-button">
<div class="Languagebar-hamburger">
<div class="Languagebar-hamburger-line Languagebar-hamburger-line1"></div>
<div class="Languagebar-hamburger-line Languagebar-hamburger-line2"></div>
<div class="Languagebar-hamburger-line Languagebar-hamburger-line3"></div>
<div class="Languagebar-hamburger-line Languagebar-hamburger-line4"></div>
</div>
</div>
</div>
</div>
<nav class='Languagebar' ref="Languagebar">
<div class='Languagebar-background' ref="navBg">
<div class="Languagebar-wrapper" ref="LanguagebarWrapper">
<div class='Languagebar-nav'>
<div class="Languagebar-primarynav" ref="primaryNav">
<div class="Languagebar-item"></div>
<ul>
<li><a class="selected" href="/">English</a></li>
<li><a href="/ko/">???</a></li>
</ul>
<div class="Languagebar-item"></div>
</div>
</div>
<div class="Languagebar-download">
</div>
</div>
</div>
</nav>
</div>
-->
<div class="social-media js-hover-effect">
Follow Us
<a href=" http://www.facebook.com/testlink" title="Facebook" class="SocialItem js-click" target="_blank" data-category="Header" data-label="Facebook">
<svg viewBox="0 0 87 87" style="fill:#ffffff;vertical-align:middle;" class="icon-facebook">
<path fill="#010201" d="M76.1,0H10.9C4.9,0,0,4.9,0,10.9v65.2C0,82.1,4.9,87,10.9,87h33V55.8H33.5V42.2h10.4v-6.8 c0-10.5,7.7-18.7,17.6-18.7h9.6V32h-8.6c-2.3,0-2.9,1.3-2.9,3.1v7.1h11.5v13.6H59.6V87h16.5c6,0,10.9-4.9,10.9-10.9V10.9 C87,4.9,82.1,0,76.1,0z"></path>
</svg>
</a>
<a href="http://twitter.com/testlink" title="Twitter" class="SocialItem js-click" target="_blank" data-category="Header" data-label="Twitter">
<svg viewBox="0 0 87 87" style="fill:#ffffff;vertical-align:middle;" class="icon-twitter">
<path fill="#010201" d="M87,16.9c-3.2,1.4-6.6,2.4-10.2,2.8c3.7-2.2,6.5-5.7,7.8-9.9c-3.5,2-7.3,3.5-11.3,4.3 c-3.3-3.5-7.9-5.6-13-5.6c-9.9,0-17.9,8-17.9,17.8c0,1.4,0.2,2.8,0.5,4.1c-14.8-0.7-28-7.8-36.8-18.7c-1.5,2.6-2.4,5.7-2.4,9 c0,6.2,3.1,11.7,7.9,14.9c-2.9-0.1-5.7-0.9-8.1-2.2c0,0.1,0,0.2,0,0.2c0,8.7,6.2,15.9,14.3,17.5c-1.5,0.4-3.1,0.6-4.7,0.6 c-1.1,0-2.3-0.1-3.4-0.3c2.3,7.1,8.9,12.3,16.7,12.4c-6.1,4.8-13.8,7.6-22.2,7.6c-1.4,0-2.9-0.1-4.3-0.3c7.9,5.1,17.3,8,27.4,8 c32.8,0,50.8-27.2,50.8-50.8c0-0.8,0-1.5-0.1-2.3C81.6,23.6,84.6,20.5,87,16.9z"=></path>
</svg>
</a>
<a href="http://instagram.com/testlink" title="Instagram" class="SocialItem js-click" target="_blank" data-category="Header" data-label="Instagram">
<svg viewBox="0 0 87 87" style="fill:#ffffff;vertical-align:middle;" class="icon-instagram">
<path fill="#010201" d="M69.8,43.5C69.8,58,58,69.8,43.5,69.8C29,69.8,17.2,58,17.2,43.5c0-1.7,0.2-3.4,0.5-5.1H0v35
C0,80.9,6.1,87,13.6,87h59.8C80.9,87,87,80.9,87,73.4v-35H69.3C69.6,40.1,69.8,41.8,69.8,43.5z M73.4,0H13.6C6.1,0,0,6.1,0,13.6
v14.7h22c4.8-6.7,12.6-11.1,21.5-11.1c8.9,0,16.7,4.4,21.5,11.1h22V13.6C87,6.1,80.9,0,73.4,0z M80.1,16.8c0,1.3-1.1,2.4-2.4,2.4
h-7.3c-1.3,0-2.4-1.1-2.4-2.4V9.5c0-1.3,1.1-2.4,2.4-2.4h7.3c1.3,0,2.4,1.1,2.4,2.4V16.8z M59.7,43.5c0-8.9-7.3-16.2-16.2-16.2
c-8.9,0-16.2,7.3-16.2,16.2c0,8.9,7.2,16.2,16.2,16.2C52.4,59.7,59.7,52.4,59.7,43.5z"/>
</svg>
</a>
<a href="http://youtube.com/testlink" title="YouTube" class="SocialItem js-click" target="_blank" data-category="Header" data-label="YouTube">
<svg viewBox="0 0 87 87" style="fill:#ffffff;vertical-align:middle;" class="icon-youtube">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.7,8.1c-0.6-0.1-1.4-0.1-2,0c-1.5,0.3-4.1,1.2-5,4.4c0,0-0.2,1.6-0.2,2.2
v11.2c0,0,0.1,1.9,1.1,3.6c0.8,1.3,2.2,2.4,4.4,2.6c0.3,0,1.3,0,1.6,0c2.1-0.3,3.4-1.4,4.2-2.6c1.1-1.7,1.1-3.6,1.1-3.6V14.7
c0-0.7-0.2-2.2-0.2-2.2C46.9,9.3,44.2,8.4,42.7,8.1 M43.8,14.7v11.2c0,2.7-2,2.5-2,2.5s-2.2,0.2-2.2-2.5V14.7
c0-3.1,2.2-2.9,2.2-2.9C44,11.8,43.8,14.7,43.8,14.7 M27.2,12.5L23.9,0.2H19L25,19v12.7h4.5V19l5.8-18.8h-4.7L27.2,12.5z
M59.7,8.2v18.1c-0.7,1.6-2.5,2-2.5,2c-1.6,0-1.3-1.1-1.3-1.1v-19h-4.3v20.3c0,2.2,1.1,3.6,3.4,3.6c2.2,0,4.7-2.9,4.7-2.9v2.7
h4.2V8.2H59.7z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M73,39C67.8,38,62,38.3,43.3,38c-12.6,0-19,0.2-19.8,0.2
c-8.1,0.5-13.8-0.7-15.8,8.1c-0.9,5-1.4,11.3-1.4,16.1C6.8,73,5.9,85.6,16,86.5c5.2,0.5,18.7,0.7,27.6,0.7
c12.2,0,25.4-0.2,29.9-1.1c2-0.5,3.7-2.5,4.3-3.4c2.6-3.5,2.7-8.9,2.9-20.3C80.2,52.7,80.9,40.1,73,39 M28.2,50.2H23v27.3h-4.7
V50.2h-5v-4.7h14.9C28.2,45.5,28.4,50.2,28.2,50.2 M41.5,77.7h-4.3V75c0,0-2.3,2.9-4.7,2.9c-2.5,0-3.4-1.6-3.4-4.5V53.8h4.3V73
c0,0,0,0.9,1.1,0.9c1.1,0,2.7-1.6,2.7-2v-18h4.3V77.7z M57.9,73.4c0,0-0.5,4.5-3.2,4.5c-2.7,0-4.3-1.6-5.2-2.7v2.5h-4.3v-32h4.3
v10.4c0,0,2.3-2.7,4.3-2.7c2,0,4.1,1.4,4.1,4.3V73.4z M74.2,73.4c-0.7,4.1-5.6,4.5-5.6,4.5c-7.2,0-7-6.8-7-6.8V59.9
c0-0.9,0.4-2.3,0.4-2.3c0.5-1.4,0.9-4.1,6.3-4.1c6.3,0,6.1,6.3,6.1,6.3v6.5h-8.6v4.7c0,1.3,0.7,2.7,2.5,2.7
c1.8,0,1.8-2.7,1.8-2.7v-1.8h4.3C74.4,69.4,74.6,70.5,74.2,73.4 M70.1,59.9c0,0-0.2-2.5-2-2.5c-1.8,0-2.3,2-2.3,2.5v2.9h4.3
V59.9z M51.8,57.4c-1.1,0-2,0.9-2,0.9V73c0.7,0.9,2,0.9,2,0.9c1.8,0,1.8-2,1.8-2V59.9C53.6,58.3,53,57.4,51.8,57.4"/>
</g>
</svg>
</a>
</div>
</header>
<!-- header end -->
<!-- yield start -->
<div class="home">
<div class="section section-homepage section-homepage-main">
<div class="section-wrapper">
<!--First Blog Entry Row-->
<div class="home-main">
<div class="main-article">
<div class="home-main-news-item ">
<div class="<!--home-main-news-item-content--> category-release-notes">
<div class="main-article-content">
<h1>Click da link</h1>
<a href="http://www.themeatly.com/comic-roll/2015/9/10/m50vieyei6kpk1ebutff6pu4v82i7m"><h1 style="font-size:100px; color:blue;">Link.<h1></a>
</div>
</div>
</div>
</div>
<div class="home-main-news-item ">
<div class="desktop-col-50">
<div class="home-main-picture">
<a href="articles/tips-on-making-great-games.html" class="js-click" data-category="Home" data-label="How to make great games">
<picture class="HeroImage">
<source data-srcset="call_of_duty.jpg, call_of_duty.jpg 2x" media="(max-width: 599px)">
<source data-srcset="call_of_duty.jpg, call_of_duty.jpg 2x" media="(max-width: 1023px)">
<source data-srcset="call_of_duty.jpg, call_of_duty.jpg 2x" media="(max-width: 1439px)">
<source data-srcset="call_of_duty.jpg, call_of_duty.jpg 2x" media="(min-width: 1440px)">
<div class="preloader">
<span class="dot-1"></span>
<span class="dot-2"></span>
<span class="dot-3"></span>
</div>
<img data-src="call_of_duty.jpg" class="lazyload" alt="How to make great games" draggable="false">
<span class="video-icon">
<svg viewBox="0 0 38 38" class="icon-arrow">
<g>
<path fill="#FFFFFF" d="M19,0C8.523,0,0,8.523,0,19c0,10.477,8.523,19,19,19c10.477,0,19-8.523,19-19C38,8.523,29.477,0,19,0z
M19,33c-7.72,0-14-6.28-14-14S11.28,5,19,5c7.721,0,14,6.28,14,14S26.721,33,19,33z"/>
<path fill="#FFFFFF" d="M24.909,17.784l-8.7-5.556c-1.047-0.669-1.904-0.2-1.904,1.043v11.458c0,1.244,0.857,1.713,1.904,1.043
l8.7-5.556C25.956,19.547,25.956,18.453,24.909,17.784z"/>
</g>
</svg>
</span>
</picture>
</a>
</div>
<a href="articles/tips-on-making-great-games.html" class="home-main-news-item-content-category category-release-notes">
<h4>Make your games great</h4>
</a>
</div>
<div class="home-main-news-item-content category-release-notes">
<p class="home-main-news-item-date">February 20, 2016</p>
<h2><a href="articles/tips-on-making-great-games.html" class="js-click" data-category="Home" data-label="How to make great games">What makes a great game?</a></h2>
<p>Learn how to turn your games from good to great. <a href="#" class="js-click" data-category="Home" data-label="How to make great games">Read More</a></p>
</div>
</div>
</div>
</div>
</div>
<div class="section section-homepage section-homepage-news-primary">
<div class="section-wrapper">
<!--Second Blog Entry Row-->
<div class="home-news-primary-item-holder ">
<div class="home-news-primary-item category-release-notes">
<a href="articles/creative404pages.html" class="js-click" data-category="Home" data-label="Primary - Image - New Balance Live! (2/29)">
<picture class="">
<source data-srcset="articles/creative404pages/image.svg, articles/creative404pages/image.svg 2x" media="(max-width: 599px)">
<source data-srcset="articles/creative404pages/image.svg, articles/creative404pages/image.svg 2x" media="(max-width: 1023px)">
<source data-srcset="articles/creative404pages/image.svg, articles/creative404pages/image.svg 2x" media="(max-width: 1439px)">
<source data-srcset="articles/creative404pages/image.svg, articles/creative404pages/image.svg 2x" media="(min-width: 1440px)">
<div class="preloader">
<span class="dot-1"></span>
<span class="dot-2"></span>
<span class="dot-3"></span>
</div>
<img data-src="articles/creative404pages/image.svg" class="lazyload" alt="Creative 404 pages" draggable="false">
<span class="video-icon">
<svg viewBox="0 0 38 38" class="icon-arrow">
<g>
<path fill="#FFFFFF" d="M19,0C8.523,0,0,8.523,0,19c0,10.477,8.523,19,19,19c10.477,0,19-8.523,19-19C38,8.523,29.477,0,19,0z
M19,33c-7.72,0-14-6.28-14-14S11.28,5,19,5c7.721,0,14,6.28,14,14S26.721,33,19,33z"/>
<path fill="#FFFFFF" d="M24.909,17.784l-8.7-5.556c-1.047-0.669-1.904-0.2-1.904,1.043v11.458c0,1.244,0.857,1.713,1.904,1.043
l8.7-5.556C25.956,19.547,25.956,18.453,24.909,17.784z"/>
</g>
</svg>
</span>
</picture>
</a>
<div class="home-news-primary-item-content js-match-height">
<div class="home-news-primary-item-category-bar"></div>
<a href="articles/creative404pages.html" class="home-news-primary-item-content-category category-release-notes">
<h4 class="">Release Notes</h4>
</a>
<p class="home-news-primary-item-date">February 26, 2016</p>
<h3><a href="articles/creative404pages.html" class="js-click" data-category="Home" data-label="Cool 404 pages">Cool 404 pages</a></h3>
<div class="home-news-primary-item-excerpt">
<p>A selection of the best 404 pages the web has to offer... <a href="articles/creative404pages.html" class="js-click" data-category="Home" data-label="Cool 404 pages">Read More</a></p>
</div>
</div>
</div>
</div>
<div class="home-news-primary-item-holder has-video ">
<div class="home-news-primary-item category-news">
<a href="/blog/news/new-card-spotlights" class="js-click" data-category="Home" data-label="Primary - Image - New Card Spotlights!">
<picture class="">
<source data-srcset="images/logo-white-with-faded-background.svg, images/logo-white-with-faded-background.svg 2x" media="(max-width: 599px)">
<source data-srcset="images/logo-white-with-faded-background.svg, images/logo-white-with-faded-background.svg 2x" media="(max-width: 1023px)">
<source data-srcset="images/logo-white-with-faded-background.svg, images/logo-white-with-faded-background.svg 2x" media="(max-width: 1439px)">
<source data-srcset="images/logo-white-with-faded-background.svg, images/logo-white-with-faded-background.svg 2x" media="(min-width: 1440px)">
<div class="preloader">
<span class="dot-1"></span>
<span class="dot-2"></span>
<span class="dot-3"></span>
</div>
<img data-src="images/logo-white-with-faded-background.svg" class="lazyload" alt="New Card Spotlights!" draggable="false">
<!-- <span class="video-icon">
<svg viewBox="0 0 38 38" class="icon-arrow">
<g>
<path fill="#FFFFFF" d="M19,0C8.523,0,0,8.523,0,19c0,10.477,8.523,19,19,19c10.477,0,19-8.523,19-19C38,8.523,29.477,0,19,0z
M19,33c-7.72,0-14-6.28-14-14S11.28,5,19,5c7.721,0,14,6.28,14,14S26.721,33,19,33z"/>
<path fill="#FFFFFF" d="M24.909,17.784l-8.7-5.556c-1.047-0.669-1.904-0.2-1.904,1.043v11.458c0,1.244,0.857,1.713,1.904,1.043
l8.7-5.556C25.956,19.547,25.956,18.453,24.909,17.784z"/>
</g>
</svg>
</span> -->
</picture>
</a>
<div class="home-news-primary-item-content js-match-height">
<div class="home-news-primary-item-category-bar"></div>
<a href="/blog/news" class="home-news-primary-item-content-category category-news">
<h4 class="">News</h4>
</a>
<p class="home-news-primary-item-date">February 28, 2016</p>
<h3><a href="/blog/news/new-card-spotlights" class="js-click" data-category="Home" data-label="New logo & theme!">New logo & theme!</a></h3>
<div class="home-news-primary-item-excerpt">
<p>Vlaros.com has a new logo and theme! <a href="/blog/news/new-card-spotlights" class="js-click" data-category="Home" data-label="Primary - Read More - New Card Spotlights!">Read More</a></p>
</div>
</div>
</div>
</div>
<div class="home-news-primary-item-holder ">
<div class="home-news-primary-item category-news">
<a href="/blog/news/update-sneak-peeks" class="js-click" data-category="Home" data-label="Primary - Image - Update Sneak Peeks!">
<picture class="">
<source data-srcset="images/epicninja.jpg, images/epicninja.jpg 2x" media="(max-width: 599px)">
<source data-srcset="images/epicninja.jpg, images/epicninja.jpg 2x" media="(max-width: 1023px)">
<source data-srcset="images/epicninja.jpg, images/epicninja.jpg 2x" media="(max-width: 1439px)">
<source data-srcset="images/epicninja.jpg, images/epicninja.jpg 2x" media="(min-width: 1440px)">
<div class="preloader">
<span class="dot-1"></span>
<span class="dot-2"></span>
<span class="dot-3"></span>
</div>
<img data-src="images/epicninja.jpg" class="lazyload" alt="Update Sneak Peeks!" draggable="false">
<span class="video-icon">
<svg viewBox="0 0 38 38" class="icon-arrow">
<g>
<path fill="#FFFFFF" d="M19,0C8.523,0,0,8.523,0,19c0,10.477,8.523,19,19,19c10.477,0,19-8.523,19-19C38,8.523,29.477,0,19,0z
M19,33c-7.72,0-14-6.28-14-14S11.28,5,19,5c7.721,0,14,6.28,14,14S26.721,33,19,33z"/>
<path fill="#FFFFFF" d="M24.909,17.784l-8.7-5.556c-1.047-0.669-1.904-0.2-1.904,1.043v11.458c0,1.244,0.857,1.713,1.904,1.043
l8.7-5.556C25.956,19.547,25.956,18.453,24.909,17.784z"/>
</g>
</svg>
</span>
</picture>
</a>
<div class="home-news-primary-item-content js-match-height">
<div class="home-news-primary-item-category-bar"></div>
<a href="/blog/news" class="home-news-primary-item-content-category category-news">
<h4 class="">News</h4>
</a>
<p class="home-news-primary-item-date">February 24, 2016 </p>
<h3><a href="/blog/news/update-sneak-peeks" class="js-click" data-category="Home" data-label="Primary - Title - Update Sneak Peeks!">Games</a></h3>
<div class="home-news-primary-item-excerpt">
<p>Free games to play online! <a href="/blog/news/update-sneak-peeks" class="js-click" data-category="Home" data-label="Primary - Read More - Update Sneak Peeks!">Read More</a></p>
</div>
</div>
</div>
</div>
<br/>
<a href="/blog" class="button-primary js-click" data-category="Blog" data-label="View All">
View All
<span class="button-primary-arrow">
<svg viewBox="0 0 23 23" class="icon-arrow">
<g>
<path d="M18.8,10.1L9.3,0.8c-1.1-1.1-2.8-1.1-3.9,0c-1.1,1.1-1.1,2.8,0,3.8l7.6,7.4l-7.6,7.4
c-1.1,1.1-1.1,2.8,0,3.8c1.1,1.1,2.8,1.1,3.9,0l9.5-9.3C19.9,12.9,19.9,11.2,18.8,10.1z"/>
</g>
</svg>
</span>
</a>
</div>
</div>
<div class="section section-homepage section-homepage-community">
<div class="section-wrapper">
<div class="home-community-content">
<h4></h4>
<h2>Latest Articles</h2>
<a href="http://clashroyaledeckbuilder.com/build" target="_blank" class="home-community-content-item js-click" data-category="Home" data-label="Community Videos - Clash Royale Deck Builder">
<picture class="">
<source data-srcset="https://clashroyale.com/uploaded-images/_600x600_crop_center-center_90/Royale_Audit_10.jpg?mtime=20160205121741, https://clashroyale.com/uploaded-images/_1200x1200_crop_center-center_90/Royale_Audit_10.jpg?mtime=20160205121741 2x" media="(max-width: 599px)">
<source data-srcset="https://clashroyale.com/uploaded-images/_280x280_crop_center-center_90/Royale_Audit_10.jpg?mtime=20160205121741, https://clashroyale.com/uploaded-images/_560x560_crop_center-center_90/Royale_Audit_10.jpg?mtime=20160205121741 2x" media="(max-width: 1023px)">
<source data-srcset="https://clashroyale.com/uploaded-images/_236x236_crop_center-center_90/Royale_Audit_10.jpg?mtime=20160205121741, https://clashroyale.com/uploaded-images/_472x472_crop_center-center_90/Royale_Audit_10.jpg?mtime=20160205121741 2x" media="(max-width: 1439px)">
<source data-srcset="https://clashroyale.com/uploaded-images/_236x236_crop_center-center_90/Royale_Audit_10.jpg?mtime=20160205121741, https://clashroyale.com/uploaded-images/_472x472_crop_center-center_90/Royale_Audit_10.jpg?mtime=20160205121741 2x" media="(min-width: 1440px)">
<div class="preloader">
<span class="dot-1"></span>
<span class="dot-2"></span>
<span class="dot-3"></span>
</div>
<img data-src="https://clashroyale.com/uploaded-images/Royale_Audit_10.jpg?mtime=20160205121741" class="picturefill-img lazyload" alt="Clash Royale Deck Builder" draggable="false">
<div class="youtube-play">
<img src="/img/youtube-play.png" alt="Play Video">
</div>
</picture>
<h3>Articles name here</h3>
<p>March 2, 2016</p>
</a>
<a href="https://youtu.be/EVMFgEwdCHc" target="_blank" class="home-community-content-item js-click" data-category="Home" data-label="Community Videos - The Basics">
<picture class="">
<source data-srcset="https://clashroyale.com/uploaded-images/_600x600_crop_center-center_90/Royale_Audit_6.jpg?mtime=20160205121738, https://clashroyale.com/uploaded-images/_1200x1200_crop_center-center_90/Royale_Audit_6.jpg?mtime=20160205121738 2x" media="(max-width: 599px)">
<source data-srcset="https://clashroyale.com/uploaded-images/_280x280_crop_center-center_90/Royale_Audit_6.jpg?mtime=20160205121738, https://clashroyale.com/uploaded-images/_560x560_crop_center-center_90/Royale_Audit_6.jpg?mtime=20160205121738 2x" media="(max-width: 1023px)">
<source data-srcset="https://clashroyale.com/uploaded-images/_236x236_crop_center-center_90/Royale_Audit_6.jpg?mtime=20160205121738, https://clashroyale.com/uploaded-images/_472x472_crop_center-center_90/Royale_Audit_6.jpg?mtime=20160205121738 2x" media="(max-width: 1439px)">
<source data-srcset="https://clashroyale.com/uploaded-images/_236x236_crop_center-center_90/Royale_Audit_6.jpg?mtime=20160205121738, https://clashroyale.com/uploaded-images/_472x472_crop_center-center_90/Royale_Audit_6.jpg?mtime=20160205121738 2x" media="(min-width: 1440px)">
<div class="preloader">
<span class="dot-1"></span>
<span class="dot-2"></span>
<span class="dot-3"></span>
</div>
<img data-src="https://clashroyale.com/uploaded-images/Royale_Audit_6.jpg?mtime=20160205121738" class="picturefill-img lazyload" alt="The Basics" draggable="false">
<div class="youtube-play">
<img src="/img/youtube-play.png" alt="Play Video">
</div>
</picture>
<h3>Article name here</h3>
<p>March 1, 2016</p>
</a>
<a href="https://www.youtube.com/watch?v=x6aQ67jk58I" target="_blank" class="home-community-content-item js-click" data-category="Home" data-label="Community Videos - Clash Royale Gameplay">
<picture class="">
<source data-srcset="https://clashroyale.com/uploaded-images/_600x600_crop_center-center_90/Screen-Shot-2016-01-03-at-3.07.59-PM.png?mtime=20160103145106, https://clashroyale.com/uploaded-images/_1200x1200_crop_center-center_90/Screen-Shot-2016-01-03-at-3.07.59-PM.png?mtime=20160103145106 2x" media="(max-width: 599px)">
<source data-srcset="https://clashroyale.com/uploaded-images/_280x280_crop_center-center_90/Screen-Shot-2016-01-03-at-3.07.59-PM.png?mtime=20160103145106, https://clashroyale.com/uploaded-images/_560x560_crop_center-center_90/Screen-Shot-2016-01-03-at-3.07.59-PM.png?mtime=20160103145106 2x" media="(max-width: 1023px)">
<source data-srcset="https://clashroyale.com/uploaded-images/_236x236_crop_center-center_90/Screen-Shot-2016-01-03-at-3.07.59-PM.png?mtime=20160103145106, https://clashroyale.com/uploaded-images/_472x472_crop_center-center_90/Screen-Shot-2016-01-03-at-3.07.59-PM.png?mtime=20160103145106 2x" media="(max-width: 1439px)">
<source data-srcset="https://clashroyale.com/uploaded-images/_236x236_crop_center-center_90/Screen-Shot-2016-01-03-at-3.07.59-PM.png?mtime=20160103145106, https://clashroyale.com/uploaded-images/_472x472_crop_center-center_90/Screen-Shot-2016-01-03-at-3.07.59-PM.png?mtime=20160103145106 2x" media="(min-width: 1440px)">
<div class="preloader">
<span class="dot-1"></span>
<span class="dot-2"></span>
<span class="dot-3"></span>
</div>
<img data-src="https://clashroyale.com/uploaded-images/Screen-Shot-2016-01-03-at-3.07.59-PM.png?mtime=20160103145106" class="picturefill-img lazyload" alt="Clash Royale Gameplay" draggable="false">
<div class="youtube-play">
<img src="/img/youtube-play.png" alt="Play Video">
</div>
</picture>
<h3>Articles name here</h3>
<p>March 3, 2016</p>
</a>
<br />
<a href="/articles" class="button-primary js-click" data-category="View all articles" data-label="View All">
View All
<span class="button-primary-arrow">
<svg viewBox="0 0 23 23" class="icon-arrow">
<g>
<path d="M18.8,10.1L9.3,0.8c-1.1-1.1-2.8-1.1-3.9,0c-1.1,1.1-1.1,2.8,0,3.8l7.6,7.4l-7.6,7.4
c-1.1,1.1-1.1,2.8,0,3.8c1.1,1.1,2.8,1.1,3.9,0l9.5-9.3C19.9,12.9,19.9,11.2,18.8,10.1z"/>
</g>
</svg>
</span>
</a>
</div>
<div class="community-prince">
<picture class="">
<source data-srcset="images/v-white.svg, images/v-white.svg 2x" media="(max-width: 599px)">
<source data-srcset="images/v-white.svg, images/v-white.svg 2x" media="(max-width: 1023px)">
<source data-srcset="images/v-white.svg" media="(max-width: 1439px)">
<source data-srcset="images/v-white.svg" media="(min-width: 1440px)">
<img data-src="images/v-white.svg" class="lazyload" draggable="false">
</picture>
</div>
</div>
</div>
<!--<div class="section section-homepage section-homepage-faq FAQ js-faq" id="faq">
<div class="wrapper FAQ-content">
<h1>FAQ</h1>
<div class="FAQ-faq">
<div class="FAQ-faq-item js-click" data-category="FAQ" data-label="Why can�t I find Clash Royale on the Appstore or Google Play Store?">
<div class="FAQ-question">
<h4>Why can�t I find Clash Royale on the Appstore or Google Play Store?</h4>
<div class="FAQ-svg-container-plus svg-container">
<svg viewBox="0 0 27 27">
<path d="M18.7,8.4h-5.2V3.2c0-1.4-1.1-2.5-2.5-2.5c-1.4,0-2.5,1.1-2.5,2.5v5.2H3.3c-1.4,0-2.5,1.1-2.5,2.5s1.1,2.5,2.5,2.5h5.2v5.2
c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5v-5.2h5.2c1.4,0,2.5-1.1,2.5-2.5S20.1,8.4,18.7,8.4z"/>
</svg>
</div>
<div class="FAQ-svg-container-minus svg-container">
<svg viewBox="0 0 27 27">
<path d="M18.7,13.4H3.3c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.5,2.5-2.5h15.4c1.4,0,2.5,1.1,2.5,2.5S20.1,13.4,18.7,13.4z"/>
</svg>
</div>
</div>
<div class="FAQ-answer">
<div class="FAQ-answer-content">
<p>Clash Royale is only available for iOS in Canada, Hong Kong, Australia, Sweden, Norway, Denmark, Iceland, Finland and New Zealand. We hope to add more countries and platforms in the future, so stay tuned to Clash Royale on <a href="http://www.facebook.com/ClashRoyale" target="_blank">Facebook</a>, <a href="https://twitter.com/ClashRoyale" target="_blank">Twitter</a> and <a href="https://clashroyale.com/">ClashRoyale.com</a> for future updates!
</p>
</div>
</div>
</div>
<div class="FAQ-faq-item js-click" data-category="FAQ" data-label="Why does Supercell do soft launches at all?">
<div class="FAQ-question">
<h4>Why does Supercell do soft launches at all?</h4>
<div class="FAQ-svg-container-plus svg-container">
<svg viewBox="0 0 27 27">
<path d="M18.7,8.4h-5.2V3.2c0-1.4-1.1-2.5-2.5-2.5c-1.4,0-2.5,1.1-2.5,2.5v5.2H3.3c-1.4,0-2.5,1.1-2.5,2.5s1.1,2.5,2.5,2.5h5.2v5.2
c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5v-5.2h5.2c1.4,0,2.5-1.1,2.5-2.5S20.1,8.4,18.7,8.4z"/>
</svg>
</div>
<div class="FAQ-svg-container-minus svg-container">
<svg viewBox="0 0 27 27">
<path d="M18.7,13.4H3.3c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.5,2.5-2.5h15.4c1.4,0,2.5,1.1,2.5,2.5S20.1,13.4,18.7,13.4z"/>
</svg>
</div>
</div>
<div class="FAQ-answer">
<div class="FAQ-answer-content">
<p>Whenever Supercell launches a game, we test it out in a few select countries before we make the decision to launch globally, or spend more time improving the game. Let us know what you think on the <a href="http://supr.cl/ClashRoyaleForums" target="_blank">forums</a> and be sure to check <a href="https://clashroyale.com/">ClashRoyale.com</a> regularly for updates on our progress.
</p>
</div>
</div>
</div>
<div class="FAQ-faq-item js-click" data-category="FAQ" data-label="Was Clash Royale created by the same game team as Clash of Clans?">
<div class="FAQ-question">
<h4>Was Clash Royale created by the same game team as Clash of Clans?</h4>
<div class="FAQ-svg-container-plus svg-container">
<svg viewBox="0 0 27 27">
<path d="M18.7,8.4h-5.2V3.2c0-1.4-1.1-2.5-2.5-2.5c-1.4,0-2.5,1.1-2.5,2.5v5.2H3.3c-1.4,0-2.5,1.1-2.5,2.5s1.1,2.5,2.5,2.5h5.2v5.2
c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5v-5.2h5.2c1.4,0,2.5-1.1,2.5-2.5S20.1,8.4,18.7,8.4z"/>
</svg>
</div>
<div class="FAQ-svg-container-minus svg-container">
<svg viewBox="0 0 27 27">
<path d="M18.7,13.4H3.3c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.5,2.5-2.5h15.4c1.4,0,2.5,1.1,2.5,2.5S20.1,13.4,18.7,13.4z"/>
</svg>
</div>
</div>
<div class="FAQ-answer">
<div class="FAQ-answer-content">
<p>Several founding members of Clash Royale are also past members of the Clash of Clans game team. However, there are currently no developers working on both Clash Royale and Clash of Clans. We plan to keep these teams separate going forward.
</p>
</div>
</div>
</div>
<div class="FAQ-faq-item js-click" data-category="FAQ" data-label="Is this Clash of Clans 2?">
<div class="FAQ-question">
<h4>Is this Clash of Clans 2?</h4>
<div class="FAQ-svg-container-plus svg-container">
<svg viewBox="0 0 27 27">
<path d="M18.7,8.4h-5.2V3.2c0-1.4-1.1-2.5-2.5-2.5c-1.4,0-2.5,1.1-2.5,2.5v5.2H3.3c-1.4,0-2.5,1.1-2.5,2.5s1.1,2.5,2.5,2.5h5.2v5.2
c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5v-5.2h5.2c1.4,0,2.5-1.1,2.5-2.5S20.1,8.4,18.7,8.4z"/>
</svg>
</div>
<div class="FAQ-svg-container-minus svg-container">
<svg viewBox="0 0 27 27">
<path d="M18.7,13.4H3.3c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.5,2.5-2.5h15.4c1.4,0,2.5,1.1,2.5,2.5S20.1,13.4,18.7,13.4z"/>
</svg>
</div>
</div>
<div class="FAQ-answer">
<div class="FAQ-answer-content">
<p>Clash Royale is not Clash of Clans 2. We will continue to develop Clash of Clans and Clash Royale as completely separate games, with two distinct teams!
</p>
</div>
</div>
</div>
<div class="FAQ-faq-item js-click" data-category="FAQ" data-label="Will the new Clash Royale characters be part of Clash of Clans?">
<div class="FAQ-question">
<h4>Will the new Clash Royale characters be part of Clash of Clans?</h4>
<div class="FAQ-svg-container-plus svg-container">
<svg viewBox="0 0 27 27">
<path d="M18.7,8.4h-5.2V3.2c0-1.4-1.1-2.5-2.5-2.5c-1.4,0-2.5,1.1-2.5,2.5v5.2H3.3c-1.4,0-2.5,1.1-2.5,2.5s1.1,2.5,2.5,2.5h5.2v5.2
c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5v-5.2h5.2c1.4,0,2.5-1.1,2.5-2.5S20.1,8.4,18.7,8.4z"/>
</svg>
</div>
<div class="FAQ-svg-container-minus svg-container">
<svg viewBox="0 0 27 27">
<path d="M18.7,13.4H3.3c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.5,2.5-2.5h15.4c1.4,0,2.5,1.1,2.5,2.5S20.1,13.4,18.7,13.4z"/>
</svg>
</div>
</div>
<div class="FAQ-answer">
<div class="FAQ-answer-content">
<p>You never know what might happen! We�ll always develop Clash Royale and Clash of Clans as their own games, with separate teams, but we�re very excited about the opportunities to expand and build upon the Clash Universe.
</p>
</div>
</div>
</div>
<div class="FAQ-faq-item js-click" data-category="FAQ" data-label="I�m having a problem with Clash Royale, can you help?">
<div class="FAQ-question">
<h4>I�m having a problem with Clash Royale, can you help?</h4>
<div class="FAQ-svg-container-plus svg-container">
<svg viewBox="0 0 27 27">
<path d="M18.7,8.4h-5.2V3.2c0-1.4-1.1-2.5-2.5-2.5c-1.4,0-2.5,1.1-2.5,2.5v5.2H3.3c-1.4,0-2.5,1.1-2.5,2.5s1.1,2.5,2.5,2.5h5.2v5.2
c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5v-5.2h5.2c1.4,0,2.5-1.1,2.5-2.5S20.1,8.4,18.7,8.4z"/>
</svg>
</div>
<div class="FAQ-svg-container-minus svg-container">
<svg viewBox="0 0 27 27">
<path d="M18.7,13.4H3.3c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.5,2.5-2.5h15.4c1.4,0,2.5,1.1,2.5,2.5S20.1,13.4,18.7,13.4z"/>
</svg>
</div>
</div>
<div class="FAQ-answer">
<div class="FAQ-answer-content">
<p>Please head over to our <a href="https://supercell.helpshift.com/a/clash-royale/" target="_blank">support page</a> for assistance with any problems you are having with Clash Royale.
</p>
</div>
</div>
</div>
</div>
<a href="http://forum.supercell.net/forumdisplay.php/107-Clash-Royale" target="_blank" class="button-primary js-click" data-category="FAQ" data-label="Visit Forums">
Visit Forum
<span class="button-primary-arrow">
<svg viewBox="0 0 23 23" class="icon-arrow">
<g>
<path d="M18.8,10.1L9.3,0.8c-1.1-1.1-2.8-1.1-3.9,0c-1.1,1.1-1.1,2.8,0,3.8l7.6,7.4l-7.6,7.4
c-1.1,1.1-1.1,2.8,0,3.8c1.1,1.1,2.8,1.1,3.9,0l9.5-9.3C19.9,12.9,19.9,11.2,18.8,10.1z"/>
</g>
</svg>
</span>
</a>
</div>
</div>
<div> -->
<!-- yield end -->
<!-- footer start -->
<footer class="Footer" ref="Footer">
<div class="Footer-wrapper">
<div class="Footer-primarynav js-hover-effect" ref="primaryNav">
<a class="Footer-item js-click" data-category="Footer" data-label="Support" href="#" target="_blank" title="Support">Home</a>
<a class="Footer-item js-click" data-category="Footer" data-label="Forum" href="#" target="_blank" title="Forum">Games</a>
<a class="Footer-item js-click" data-category="Footer" data-label="Parent's Guide" href="#" title="Parent's Guide">Tutorials</a>
<a class="Footer-item js-click" data-category="Footer" data-label="Terms of Service" href="#" target="_blank" title="Terms of Service">Reviews</a>
<a class="Footer-item js-click" data-category="Footer" data-label="Privacy Policy" href="#" target="_blank" title="Privacy Policy">Contact</a>
</div>
<div class="Footer-DownloadButton">
<a href="#" class="js-open-popup js-click" data-category="Footer" data-label="Download">
<img src="logo.svg" alt="Vlaros.com" />
</a>
</div>
<div class="Footer-secondarynav js-hover-effect">
<a href="#" target="_blank" title="Vlaros.com" class="Footer-item js-click" data-category="Footer" data-label="Vlaros.com">© Vlaros.com 2016</a>
<a href="/content-policy" target="_blank" title="Content Policy" class="Footer-item js-click" data-category="Footer" data-label="Content Policy">Content Policy</a>
</div>
<div class="Footer-SocialItems social-media js-hover-effect">
<a href=" http://www.facebook.com/testpage" title="Facebook" class="SocialItem js-click" target="_blank" data-category="Footer" data-label="Facebook">
<svg viewBox="0 0 87 87" style="fill:#ffffff;vertical-align:middle;" class="icon-facebook">
<path fill="#010201" d="M76.1,0H10.9C4.9,0,0,4.9,0,10.9v65.2C0,82.1,4.9,87,10.9,87h33V55.8H33.5V42.2h10.4v-6.8 c0-10.5,7.7-18.7,17.6-18.7h9.6V32h-8.6c-2.3,0-2.9,1.3-2.9,3.1v7.1h11.5v13.6H59.6V87h16.5c6,0,10.9-4.9,10.9-10.9V10.9 C87,4.9,82.1,0,76.1,0z"></path>
</svg>
</a>
<a href="http://twitter.com/testpage" title="Twitter" class="SocialItem js-click" target="_blank" data-category="Footer" data-label="Twitter">
<svg viewBox="0 0 87 87" style="fill:#ffffff;vertical-align:middle;" class="icon-twitter"=>
<path fill="#010201" d="M87,16.9c-3.2,1.4-6.6,2.4-10.2,2.8c3.7-2.2,6.5-5.7,7.8-9.9c-3.5,2-7.3,3.5-11.3,4.3 c-3.3-3.5-7.9-5.6-13-5.6c-9.9,0-17.9,8-17.9,17.8c0,1.4,0.2,2.8,0.5,4.1c-14.8-0.7-28-7.8-36.8-18.7c-1.5,2.6-2.4,5.7-2.4,9 c0,6.2,3.1,11.7,7.9,14.9c-2.9-0.1-5.7-0.9-8.1-2.2c0,0.1,0,0.2,0,0.2c0,8.7,6.2,15.9,14.3,17.5c-1.5,0.4-3.1,0.6-4.7,0.6 c-1.1,0-2.3-0.1-3.4-0.3c2.3,7.1,8.9,12.3,16.7,12.4c-6.1,4.8-13.8,7.6-22.2,7.6c-1.4,0-2.9-0.1-4.3-0.3c7.9,5.1,17.3,8,27.4,8 c32.8,0,50.8-27.2,50.8-50.8c0-0.8,0-1.5-0.1-2.3C81.6,23.6,84.6,20.5,87,16.9z"=></path>
</svg>
</a>
<a href="http://instagram.com/testpage" title="Instagram" class="SocialItem js-click" target="_blank" data-category="Header" data-label="Instagram">
<svg viewBox="0 0 87 87" style="fill:#ffffff;vertical-align:middle;" class="icon-instagram">
<path fill="#010201" d="M69.8,43.5C69.8,58,58,69.8,43.5,69.8C29,69.8,17.2,58,17.2,43.5c0-1.7,0.2-3.4,0.5-5.1H0v35
C0,80.9,6.1,87,13.6,87h59.8C80.9,87,87,80.9,87,73.4v-35H69.3C69.6,40.1,69.8,41.8,69.8,43.5z M73.4,0H13.6C6.1,0,0,6.1,0,13.6
v14.7h22c4.8-6.7,12.6-11.1,21.5-11.1c8.9,0,16.7,4.4,21.5,11.1h22V13.6C87,6.1,80.9,0,73.4,0z M80.1,16.8c0,1.3-1.1,2.4-2.4,2.4
h-7.3c-1.3,0-2.4-1.1-2.4-2.4V9.5c0-1.3,1.1-2.4,2.4-2.4h7.3c1.3,0,2.4,1.1,2.4,2.4V16.8z M59.7,43.5c0-8.9-7.3-16.2-16.2-16.2
c-8.9,0-16.2,7.3-16.2,16.2c0,8.9,7.2,16.2,16.2,16.2C52.4,59.7,59.7,52.4,59.7,43.5z"/>
</svg>
</a>
<a href="http://youtube.com/testpage" title="YouTube" class="SocialItem js-click" target="_blank" data-category="Header" data-label="YouTube">
<svg viewBox="0 0 87 87" style="fill:#ffffff;vertical-align:middle;" class="icon-youtube">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.7,8.1c-0.6-0.1-1.4-0.1-2,0c-1.5,0.3-4.1,1.2-5,4.4c0,0-0.2,1.6-0.2,2.2
v11.2c0,0,0.1,1.9,1.1,3.6c0.8,1.3,2.2,2.4,4.4,2.6c0.3,0,1.3,0,1.6,0c2.1-0.3,3.4-1.4,4.2-2.6c1.1-1.7,1.1-3.6,1.1-3.6V14.7
c0-0.7-0.2-2.2-0.2-2.2C46.9,9.3,44.2,8.4,42.7,8.1 M43.8,14.7v11.2c0,2.7-2,2.5-2,2.5s-2.2,0.2-2.2-2.5V14.7
c0-3.1,2.2-2.9,2.2-2.9C44,11.8,43.8,14.7,43.8,14.7 M27.2,12.5L23.9,0.2H19L25,19v12.7h4.5V19l5.8-18.8h-4.7L27.2,12.5z
M59.7,8.2v18.1c-0.7,1.6-2.5,2-2.5,2c-1.6,0-1.3-1.1-1.3-1.1v-19h-4.3v20.3c0,2.2,1.1,3.6,3.4,3.6c2.2,0,4.7-2.9,4.7-2.9v2.7
h4.2V8.2H59.7z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M73,39C67.8,38,62,38.3,43.3,38c-12.6,0-19,0.2-19.8,0.2
c-8.1,0.5-13.8-0.7-15.8,8.1c-0.9,5-1.4,11.3-1.4,16.1C6.8,73,5.9,85.6,16,86.5c5.2,0.5,18.7,0.7,27.6,0.7
c12.2,0,25.4-0.2,29.9-1.1c2-0.5,3.7-2.5,4.3-3.4c2.6-3.5,2.7-8.9,2.9-20.3C80.2,52.7,80.9,40.1,73,39 M28.2,50.2H23v27.3h-4.7
V50.2h-5v-4.7h14.9C28.2,45.5,28.4,50.2,28.2,50.2 M41.5,77.7h-4.3V75c0,0-2.3,2.9-4.7,2.9c-2.5,0-3.4-1.6-3.4-4.5V53.8h4.3V73
c0,0,0,0.9,1.1,0.9c1.1,0,2.7-1.6,2.7-2v-18h4.3V77.7z M57.9,73.4c0,0-0.5,4.5-3.2,4.5c-2.7,0-4.3-1.6-5.2-2.7v2.5h-4.3v-32h4.3
v10.4c0,0,2.3-2.7,4.3-2.7c2,0,4.1,1.4,4.1,4.3V73.4z M74.2,73.4c-0.7,4.1-5.6,4.5-5.6,4.5c-7.2,0-7-6.8-7-6.8V59.9
c0-0.9,0.4-2.3,0.4-2.3c0.5-1.4,0.9-4.1,6.3-4.1c6.3,0,6.1,6.3,6.1,6.3v6.5h-8.6v4.7c0,1.3,0.7,2.7,2.5,2.7
c1.8,0,1.8-2.7,1.8-2.7v-1.8h4.3C74.4,69.4,74.6,70.5,74.2,73.4 M70.1,59.9c0,0-0.2-2.5-2-2.5c-1.8,0-2.3,2-2.3,2.5v2.9h4.3
V59.9z M51.8,57.4c-1.1,0-2,0.9-2,0.9V73c0.7,0.9,2,0.9,2,0.9c1.8,0,1.8-2,1.8-2V59.9C53.6,58.3,53,57.4,51.8,57.4"/>
</g>
</svg>
</a>
</div>
</div>
</footer>
<!-- footer end -->
</div>
</div>
<div class="popup-overlay js-download-popup">
<div class="popup-background popup-download-close"></div>
<div class="popup-container">
<div class="popup-download js-download-prompt">
<div class="popup-content">
<div class="popup-header">
<a class="popup-download-close icon-close">
<svg viewBox="0 0 20 20">
<g>
<g>
<path d="M-13.63,13.685c-0.628,0-1.135,0.507-1.135,1.133v2.915h-10.338V8.69h2.618c0.626,0,1.133-0.508,1.133-1.134
c0-0.625-0.507-1.133-1.133-1.133h-3.751c-0.626,0-1.134,0.507-1.134,1.133v11.31c0,0.627,0.507,1.134,1.134,1.134h12.606
c0.626,0,1.134-0.507,1.134-1.134v-4.049C-12.497,14.191-13.004,13.685-13.63,13.685z"/>
<path d="M-7.809,4.439l-3.881-2.855c-0.504-0.371-1.214-0.264-1.586,0.241c-0.37,0.504-0.263,1.215,0.242,1.586l1.981,1.457
c-5.561,0.297-7.931,3.58-8.231,4.032c-0.772,1.062-1.184,2.414-1.225,4.018c-0.016,0.626,0.479,1.146,1.105,1.162
c0.01,0,0.02,0,0.029,0c0.613,0,1.118-0.489,1.133-1.104c0.03-1.145,0.3-2.074,0.804-2.759c0.014-0.019,0.032-0.046,0.045-0.066
c0.073-0.113,1.781-2.665,6.182-3l-1.038,1.413c-0.372,0.504-0.264,1.214,0.241,1.585c0.203,0.148,0.438,0.221,0.671,0.221
c0.348,0,0.691-0.161,0.914-0.462l2.855-3.882C-7.197,5.521-7.305,4.811-7.809,4.439z"/>
</g>
<path d="M12.014,10l6.056-6.056c0.557-0.556,0.557-1.458,0-2.015c-0.555-0.556-1.459-0.556-2.014,0L10,7.985L3.944,1.929
c-0.557-0.557-1.458-0.556-2.015,0c-0.556,0.556-0.556,1.458,0,2.015L7.985,10l-6.056,6.056c-0.556,0.556-0.556,1.458,0,2.014
c0.278,0.278,0.643,0.418,1.007,0.418s0.729-0.14,1.007-0.418L10,12.014l6.056,6.056c0.277,0.278,0.643,0.418,1.007,0.418
s0.729-0.14,1.007-0.418c0.557-0.556,0.557-1.458,0-2.014L12.014,10z"/>
</g>
</svg>
</a>
<div class='popup-header-assets'>
<picture class="">
<source data-srcset="/img/letter_prince_97x127.png, /img/letter_prince_144x188.png 2x" media="(max-width: 599px)">
<source data-srcset="/img/letter_prince_97x127.png, /img/letter_prince_144x188.png 2x" media="(max-width: 1023px)">
<source data-srcset="/img/letter_prince_144x188.png, /img/letter_prince_288x376.png 2x" media="(max-width: 1439px)">
<source data-srcset="/img/letter_prince_144x188.png, /img/letter_prince_288x376.png 2x" media="(min-width: 1440px)">
<img data-src="/img/letter_prince_97x127.png" class="popup-header-prince lazyload" alt="Prince" draggable="false">
</picture>
<picture class="">
<source data-srcset="/img/letter_knight_88x102.png, /img/letter_knight_176x204.png 2x" media="(max-width: 599px)">
<source data-srcset="/img/letter_knight_88x102.png, /img/letter_knight_176x204.png 2x" media="(max-width: 1023px)">
<source data-srcset="/img/letter_knight_158x183.png, /img/letter_knight_316x366.png 2x" media="(max-width: 1439px)">
<source data-srcset="/img/letter_knight_158x183.png, /img/letter_knight_316x366.png 2x" media="(min-width: 1440px)">
<img data-src="/img/letter_knight_88x102.png" class="popup-header-knight lazyload" alt="Knight" draggable="false">
</picture>
<picture class="">
<source data-srcset="https://clashroyale.com/uploaded-images/_134x63_crop_center-center_90/logo.png?mtime=20160225113328, https://clashroyale.com/uploaded-images/_268x126_crop_center-center_90/logo.png?mtime=20160225113328 2x" media="(max-width: 599px)">
<source data-srcset="https://clashroyale.com/uploaded-images/_134x63_crop_center-center_90/logo.png?mtime=20160225113328, https://clashroyale.com/uploaded-images/_268x126_crop_center-center_90/logo.png?mtime=20160225113328 2x" media="(max-width: 1023px)">
<source data-srcset="https://clashroyale.com/uploaded-images/_232x109_crop_center-center_90/logo.png?mtime=20160225113328, https://clashroyale.com/uploaded-images/_464x218_crop_center-center_90/logo.png?mtime=20160225113328 2x" media="(max-width: 1439px)">
<source data-srcset="https://clashroyale.com/uploaded-images/_232x109_crop_center-center_90/logo.png?mtime=20160225113328, https://clashroyale.com/uploaded-images/_464x218_crop_center-center_90/logo.png?mtime=20160225113328 2x" media="(min-width: 1440px)">
<img data-src="https://clashroyale.com/uploaded-images/_134x63_crop_center-center_90/logo.png?mtime=20160225113328" class="popup-header-logo lazyload" alt="Logo" draggable="false">
</picture>
</div>
</div>
<div class="popup-content-inner">
<h1>Download Clash Royale</h1>
Clash Royale is a dueling and card collecting mobile game set in the Clash Universe! Clash Royale is currently available on the App Store in Canada, Hong Kong, Australia, New Zealand and the Nordic Countries.
<a href="https://47428.measurementapi.com/serve?action=click&publisher_id=47428&site_id=115659&my_site=clash_website" target="_blank" class="appstore-download-button js-click" data-category="Download" data-label="Download Link">
<img src="https://clashroyale.com/uploaded-images/appstore-badge.png?mtime=20160224175317" alt="App Store Download" />
</a>
<hr />
<p><strong>Why Can�t I Download Clash Royale?</strong></p><p>Clash Royale is currently in soft launch and only available for iOS in Canada, Hong Kong, Australia, New Zealand and the Nordic Countries. Check back here for news and updates.</p>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="crheader.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script type="text/javascript" src="js/smoothscroll.js"></script>
</html>