-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
1258 lines (1204 loc) · 51.4 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
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="DTUBE DTC Token">
<meta name="author" content="@dtube">
<link rel="icon" href="img/dtubefavicon.png" />
<title>DTube Coin (DTC) Presentation</title>
<!-- Bootstrap core -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Fonts -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet'
type='text/css'>
<!-- Styles -->
<link href="css/dtube.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<!-- Script -->
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
</head>
<body id="page-top">
<!-- Header -->
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark navbar-small" id="mainNav">
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse"
data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false"
aria-label="Toggle navigation">
<i class="fa fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav text-uppercase ml-auto">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#about">A new model: the social blockchain</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#trust">Built on trust</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#moderation">Community moderation</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#adfree">Ad-free</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#keyplayer">For creators and curators</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#oldnew">Old vs. new</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#utilitytoken">Utility Token</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#tokenlaunch">Token generation event</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#contact">Press & contact</a>
</li>
</ul>
</div>
</nav>
<header class="masthead">
<div class="container">
<div class="intro-text">
<div class="intro-lead-in">
<img class="top-logo" src="img/kit/Logo_White.svg">
<h1 class="title m-0">
<p> We make social media <span id="spin"></span></p>
</h1>
<!-- <div class="subtitle">(+trustworthy, fair, empowering, uncensorable, immutable)</div> -->
<div class="row justify-content-md-center">
<div class="col-md-auto mt-3">
<a class="btnread nav-link js-scroll-trigger" href="https://token.d.tube/whitepaper.pdf" target="_blank">Read the whitepaper</a>
</div>
<div class="col-md-auto mt-3">
<button class="btnbuy nav-link js-scroll-trigger countdown" href="https://ionomy.com/en/markets/btc-dtube" >Buy DTC</button>
</div>
</div>
</div>
<a class="nav-link js-scroll-trigger next" href="#about">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
</div>
</header>
<div class="barmodel">
<div class="container p-0">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<img src="img/kit/Logo_Black.svg" style="width:100px;margin-bottom:4px;" />
</a>
<div class="modeltitle">A NEW MODEL</div>
<div class="right-model">
<a class="btnread-inverted nav-link js-scroll-trigger" href="https://token.d.tube/whitepaper.pdf" target="_blank">Read the whitepaper</a>
<button class="ml-3 btnbuy nav-link js-scroll-trigger countdown" href="https://ionomy.com/en/markets/btc-dtube" >Buy DTC</button>
</div>
</div>
</div>
<!-- Navigation -->
<nav class="navbar sidenav navbar-expand-lg navbar-dark" id="mainNav">
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav text-uppercase ml-auto">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#about">A new model: the social blockchain</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#trust">Built on trust</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#moderation">Community moderation</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#adfree">Ad-free</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#keyplayer">For creators and curators</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#oldnew">Old vs. new</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#utilitytoken">Utility Token</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#tokenlaunch">Token generation event</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#contact">Press & contact</a>
</li>
</ul>
</div>
</nav>
<!-- About -->
<section id="about" class="bg-light">
<div class="row middle container">
<div class="col-lg-12 text-center dtube-text">
<strong>Social media platforms can’t be trusted anymore. </strong>
Their inability to <strong>moderate content</strong> efficiently, <strong>protect user privacy</strong> and
operate with transparency broke the trust with users.
The <strong>targeted advertising model</strong> requires to ever increase <strong>personal data collection, ad
pressure</strong> and promote content <strong>virality over quality</strong> through suggestion algorithms.
</div>
<a class="nav-link js-scroll-trigger next" href="#model">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
</section>
<!-- Model -->
<section id="model">
<div class="row middle container">
<div class="row">
<div class="col-lg-7">
<h2 class="section-heading text-uppercase">A new model: </h2>
<h3 class="section-subheading text-muted mb-1"> the social blockchain</h3>
By replacing advertising with the social blockchain concept, the DTube Chain offers a new model based on
transparency, user empowerment and fairness. As experts in cryptography and decentralized web, we created
DTube a new video sharing platform that reward each user’s social contributions with a utility token: the
DTube Coin.
<div class="quote" >
DTube is ad-free, 100% powered by the community and 90% of the value created goes to its users.
</div>
</div>
<div class="parallax_content col-lg-4 ml-5 mt-5">
<img src="img/Export/Illus_1_shadow.png" class="layer" data-depth="0.5">
<img src="img/Export/Illus_1_base.png" class="layer" data-depth="1">
<img src="img/Export/Illus_1_top.png" class="layer" data-depth="0.5">
</div>
<a class="nav-link js-scroll-trigger next" href="#ahit">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
</section>
<section id="ahit" class="bg-light">
<div class="row middle container">
<div class="container">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-center">Dtube is <span class="section-subheading ">already a hit</span></h2>
<h4 class="section-sub text-mute text-uppercase">in 20 months</h4>
</div>
</div>
<div class="row eight-cols mt-5 text-center">
<div class="col-sm-3 mt-5 wow bounceInUp" data-wow-delay="0s" data-wow-duration="2s">
<img class="imgtrust" src="img/Export/Illus_2.png" >
<h5 class="p-3 mx-4">1 video shared every 3 minute</h5>
</div>
<div class="col-sm-3 mt-5 wow bounceInUp" data-wow-delay="0.5s" data-wow-duration="1.5s">
<img class="imgtrust" src="img/Export/Illus_3.png" >
<h5 class="p-3 mx-4">189,000 registered creators and curators</h5>
</div>
<div class="col-sm-3 mt-5 wow bounceInUp" data-wow-delay="1s" data-wow-duration="1s">
<img class="imgtrust" src="img/Export/Illus_4.png" >
<h5 class="p-3 mx-4">2.1 Million Monthly Unique Visitors</h5>
</div>
<div class="col-sm-3 mt-5 wow bounceInUp" data-wow-delay="1.3s" data-wow-duration="1.2s">
<img class="imgtrust" src="img/Export/Illus_5.png">
<h5 class="p-3 mx-4">1.1 Million distributed to the community</h5>
</div>
<div class="mt-5 container text-center p-0">
<a class="btnsecondary" href="https://signup.d.tube" target="_blank">Become a DTuber</a>
<a class="btnvisit" href="https://d.tube" target="_blank">Visit Dtube</a>
</div>
</div>
<a class="nav-link js-scroll-trigger next" href="#principle">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
</section>
<!-- Principle -->
<section id="principle">
<div class="row middle container">
<div class="row">
<div class="col-lg-7">
<h2 class="section-heading text-uppercase">Principle of the </h2>
<h3 class="section-subheading text-muted mb-3"> DTube Chain </h3>
Users on DTube (DTubers) are <strong> rewarded with DTube Coins</strong> each time they publish an original
content or share a video from the web but also for voting, tagging and commenting a video.
</div>
<div class="parallax_content col-lg-4 ml-5 mt-5">
<img src="img/Export/Illus_6_base.png" class="layer" data-depth="0">
<div class="illus6count">00566</div>
<img src="img/Export/Illus_6_top.png" class="layer" data-depth="0.5">
</div>
<a class="nav-link js-scroll-trigger next" href="#trust">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
</div>
</section>
<div class="barmodel">
<div class="container p-0">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<img src="img/kit/Logo_Black.svg" style="width:100px;margin-bottom:4px;" />
</a>
<div class="modeltitle">BUILT ON TRUST</div>
<div class="right-model">
<a class="btnread-inverted nav-link js-scroll-trigger" href="https://token.d.tube/whitepaper.pdf" target="_blank">Read the whitepaper</a>
<button class="ml-3 btnbuy nav-link js-scroll-trigger countdown" href="https://ionomy.com/en/markets/btc-dtube" >Buy DTC</button>
</div>
</div>
</div>
<section id="trust" class="bg-light">
<div class="row middle container">
<div class="row">
<div class="parallax_content col-lg-6">
<img src="img/Export/Illus_7_bottom.png" class="layer" data-depth="0.3">
<img src="img/Export/Illus_7_base.png" class="layer" data-depth="0.1">
<img src="img/Export/Illus_7_top1.png" class="layer" data-depth="-0.2">
<img src="img/Export/Illus_7_top.png" class="layer" data-depth="0.4">
<img src="img/Export/Illus_7_top2.png" class="layer" data-depth="0.1">
</div>
<div class="col-lg-6 text-center">
<h2 class="section-heading text-right">A new ecosystem built on Trust, <span
class="section-subheading ">transparency and immutability.</span></h2>
<div class="row">
<div class="col-lg-6 tableko">
<img class="mini" src="img/Export/table_ko.png">
<div>
Social media private conglomerates offer no transparency on algorithmic content distribution, revenue
sharing and use of personal data.
</div>
</div>
<div class="col-lg-6 tableok">
<img class="mini" src="img/Export/table_ok.png">
<div>
DTube and the DTube Chain are built on cryptography, transparency, open source and decentralized
technologies to re-create trust with users.
</div>
</div>
</div>
</div>
</div>
<a class="nav-link js-scroll-trigger next" href="#moderation">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
</section>
<div class="barmodel">
<div class="container p-0">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<img src="img/kit/Logo_Black.svg" style="width:100px;margin-bottom:4px;" />
</a>
<div class="modeltitle">COMMUNITY POWERED</div>
<div class="right-model">
<a class="btnread-inverted nav-link js-scroll-trigger" href="https://token.d.tube/whitepaper.pdf" target="_blank">Read the whitepaper</a>
<button class="ml-3 btnbuy nav-link js-scroll-trigger countdown" href="https://ionomy.com/en/markets/btc-dtube" >Buy DTC</button>
</div>
</div>
</div>
<!-- Token model -->
<section id="moderation" class="bg-light">
<div class="row middle container">
<div class="row">
<div class="col-lg-4 ml-5 mt-5 mb-5">
<img src="img/Export/Illus_9.png" class="wow bounceInLeft">
</div>
<div class="col-lg-7">
<h2 class="section-heading text-uppercase text-right">Content moderation and curation <span
class="section-subheading ">100% operated by DTubers</span> </h2>
To protect advertiser’s brand images and increase the advertising catalogue, automated suggestion algorithms
favor virality in spite of content quality and diversity.
Automation also proved inefficient in moderating inappropriate content.
<p></p>
DTube offers the best videos of the web 100% curated by DTuber’s posts, upvotes and tags while moderation is
operated by million of DTuber’s downvotes.
</div>
<a class="nav-link js-scroll-trigger next" href="#adfree">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
</div>
</section>
<div class="barmodel">
<div class="container p-0">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<img src="img/kit/Logo_Black.svg" style="width:100px;margin-bottom:4px;" />
</a>
<div class="modeltitle">AD-FREE</div>
<div class="right-model">
<a class="btnread-inverted nav-link js-scroll-trigger" href="https://token.d.tube/whitepaper.pdf" target="_blank">Read the whitepaper</a>
<button class="ml-3 btnbuy nav-link js-scroll-trigger countdown" href="https://ionomy.com/en/markets/btc-dtube" >Buy DTC</button>
</div>
</div>
</div>
<!-- Adfree -->
<section id="adfree">
<div class="row middle container">
<div class="row">
<div class="col-lg-7 text-center">
<h2 class="section-heading text-right">A platform <span class="section-subheading ">100% ad-free.</span></h2>
<div class="row mt-5">
<div class="col-lg-6 tableko">
<img class="mini" src="img/Export/table_ko.png">
<div>
Social media platforms need to collect large amounts of personal data in order to offer targeted
advertising services. Ad pressure never stopped increasing and gets more and more intrusive. </div>
</div>
<div class="col-lg-6 tableok">
<img class="mini" src="img/Export/table_ok.png">
<div>
Thanks to its tokenized business model, DTube is 100% ad-free and do not collect any personal data from
its users. </div>
</div>
</div>
</div>
<div class="col-lg-5 illus8 mt-5 parallax_content">
<img src="img/Export/Illus_8_base.png" class="abs fadeIn layer" data-depth="0.1">
<img src="img/Export/Illus_8_mega.png" class="abs fadeIn layer" data-depth="0.3">
<img src="img/Export/Illus_8_wave.png" class="abs fadeIn layer" data-depth="0.5">
<img src="img/Export/Illus_8_cross.png" class="abs fadeIn layer" data-depth="0.7">
</div>
</div>
<a class="nav-link js-scroll-trigger next" href="#keyplayer">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
</section>
<div class="barmodel">
<div class="container p-0">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<img src="img/kit/Logo_Black.svg" style="width:100px;margin-bottom:4px;" />
</a>
<div class="modeltitle">CREATORS & CURATORS</div>
<div class="right-model">
<a class="btnread-inverted nav-link js-scroll-trigger" href="https://token.d.tube/whitepaper.pdf" target="_blank">Read the whitepaper</a>
<button class="ml-3 btnbuy nav-link js-scroll-trigger countdown" href="https://ionomy.com/en/markets/btc-dtube" >Buy DTC</button>
</div>
</div>
</div>
<!-- keyplayer -->
<section id="keyplayer">
<div class="row middle container">
<div class="row">
<div class="col-lg-7">
<h2 class="section-heading text-uppercase">A new key player: </h2>
<h3 class="section-subheading text-muted mb-3"> the curator </h3>
On DTube, content curators use their skills to reveal the best videos of the web by posting a link of a
third-party video website and by voting and tagging the most relevant video posts on DTube.
</br>
By playing this curation game, curators try to grow their influence power by earning DTC tokens through their
posts, votes and tags.
<div class="quote">
This mechanism rewards influencers in a new way that hasn’t existed before.
</div>
</div>
<div class="col-lg-4 ml-5 mt-5">
<img src="img/Export/Illus_18_base.png" class="wow slideInRight abs">
<img src="img/Export/Illus_18_top.png" class="wow zoomInLeft" data-wow-delay="0.5s">
</div>
<a class="nav-link js-scroll-trigger next" href="#protecting">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
</div>
</section>
<!-- Protecting -->
<section id="protecting" class="bg-light">
<div class="row middle container">
<div class="row justify-content-md-center">
<div class="col-lg-6">
<img src="img/Export/Illus_19_base.png" class="wow slideInLeft abs">
<img src="img/Export/Illus_19_top1.png" class="wow bounceInRight abs" data-wow-delay="1s">
<img src="img/Export/Illus_19_top.png" class="wow zoomInRight" data-wow-delay="0.5s">
</div>
<div class="col-lg-6 text-right">
<h2 class="section-heading text-right">Protecting <span class="section-subheading ">creator’s
creativity</span></h2>
On DTube, creators post their original creations to a censorship-resistant decentralized infrastructure and
moderation is operated by millions of users who block inappropriate content and obvious copyright
infringement.
<div class="row mt-5 text-left">
<div class="col-12 mb-3 align-self-center">
<img width="20px" src="img/Export/Illus_20.png">
<strong>No demonetization or abusive censorship</strong>
</div>
<div class="col-12 mb-3 align-self-center">
<img width="20px" src="img/Export/Illus_21.png">
<strong>Direct support from fans votes and donations, without monetization threshold</strong>
</div>
<div class="col-12 mb-3 align-self-center">
<img width="20px" src="img/Export/Illus_22.png">
<strong>DTube sponsorship program for Original Content videos</strong>
</div>
<div class="col-12 mb-3 align-self-center">
<img width="20px" src="img/Export/Illus_23.png">
<strong>90% of all revenues go to DTubers</strong>
</div>
<div class="col-12 mb-3 align-self-center">
<img width="20px" src="img/Export/Illus_24.png">
<strong>Premium access content (2020)</strong>
</div>
</div>
</div>
</div>
<a class="nav-link js-scroll-trigger next" href="#oldnew">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
</section>
<div class="barmodel">
<div class="container p-0">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<img src="img/kit/Logo_Black.svg" style="width:100px;margin-bottom:4px;" />
</a>
<div class="modeltitle">OLD VS. NEW</div>
<div class="right-model">
<a class="btnread-inverted nav-link js-scroll-trigger" href="https://token.d.tube/whitepaper.pdf" target="_blank">Read the whitepaper</a>
<button class="ml-3 btnbuy nav-link js-scroll-trigger countdown" href="https://ionomy.com/en/markets/btc-dtube" >Buy DTC</button>
</div>
</div>
</div>
<!-- Token generation -->
<section id="oldnew">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-center">The old vs. <span class="section-subheading ">the new</span></h2>
</div>
</div>
<div class="row middle container mt-5 large-screen">
<div class="row mt-5">
<div class="col-lg-4 tableok text-right">
</br> </br> </br> </br>
<strong>
Business Model
</strong>
<p class="bdbot"></p>
<strong>
Trust
</strong>
<p class="bdbot"></p>
<strong>
Moderation
</strong>
</br> </br> </br> </br></br>
<strong>
Ads
</strong>
<p class="bdbot"></p>
<strong>
Privacy
</strong>
</div>
<div class="col-lg-4 tableko">
<strong>
Classic Social Medias
</strong>
<img class="mb-4 d-block" src="img/Export/classic_social_media.png">
<strong class="mt-4 tablabel">
Targeted advertising
</strong>
<p class="border-bottom bdleft"></p>
<strong>
Trust a private conglomerate
</strong>
<p class="border-bottom bdleft"></p>
<strong>
<div> Automated</div>
<div> Favors virality and showed inefficient in moderating inappropriate content</div>
</br>
</strong>
<p class="border-bottom bdleft"></p>
<strong>
Intrusive ad pressure
</strong>
<p class="border-bottom bdleft"></p>
<strong>
Massive collection of personal data
</strong>
</div>
<div class="col-lg-4 tableok">
</br>
<img class="mb-4 d-block" height="47" src="img/kit/Logo_White.svg">
<strong class="mt-4 tablabel">
Tokenized audience exposure
</strong>
<p class="border-bottom bdright"></p>
<strong>
Trust maths and cryptography
</strong>
<p class="border-bottom bdright"></p>
<strong>
<div> Community powered</div>
<div> Content’s popularity (upvotes),
moderation (downvotes) and
classification (tags) is determined</div>
</strong>
<p class="border-bottom bdright"></p>
<strong>
No ads
</strong>
<p class="border-bottom bdright"></p>
<strong>
No collection of personal data
</strong>
</div>
</div>
<a class="nav-link js-scroll-trigger next" href="#utilitytoken">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
<div class="row middle container mt-5 small-screen">
<div class="row p-0 m-0">
<div class="col-4 tableok" style="padding: 40px 0px;">
</br> </br>
<p class="bdbot"></p>
<strong>
Business Model
</strong>
<p class="bdbot"></p>
<strong>
Trust
</strong>
<p class="bdbot"></p>
<strong> </br>
Moderation
</strong>
</br> </br> </br> </br></br>
<strong> </br>
Ads
</strong>
<p class="bdbot"></p>
<strong>
Privacy
</strong>
</div>
<div class="col-8 tableko" style="padding: 40px 40px 40px 10px;">
<strong>
Classic Social Medias
</strong>
<img class="mb-4 d-block" src="img/Export/classic_social_media.png">
<strong class="mt-4 tablabel">
Targeted advertising
</strong>
<p class="border-bottom bdleft"></p>
<strong>
Trust a private conglomerate
</strong>
<p class="border-bottom bdleft"></p>
<strong>
<div> Automated</div>
<div> Favors virality and showed inefficient in moderating inappropriate content</div>
</br>
</strong>
<p class="border-bottom bdleft"></p>
<strong>
Intrusive ad pressure
</strong>
<p class="border-bottom bdleft"></p>
<strong>
Massive collection of personal data
</strong>
</div>
<div class="col-4 tableok" style="padding: 40px 0px;">
</br> </br> </br> </br>
<strong>
Business Model
</strong>
<p class="bdbot"></p>
<strong> </br>
Trust
</strong>
<p class="bdbot"></p>
<strong> </br> </br>
Moderation
</strong>
</br> </br> </br> </br></br>
<strong> </br>
Ads
</strong>
<p class="bdbot"></p>
<strong>
Privacy
</strong>
</div>
<div class="col-8 tableok">
</br>
<img class="mb-4 d-block" height="47" src="img/kit/Logo_White.svg">
<strong class="mt-4 tablabel">
Tokenized audience exposure
</strong>
<p class="border-bottom bdright"></p>
<strong>
Trust maths and cryptography
</strong>
<p class="border-bottom bdright"></p>
<strong>
<div> Community powered</div>
<div> Content’s popularity (upvotes),
moderation (downvotes) and
classification (tags) is determined</div>
</strong>
<p class="border-bottom bdright"></p>
<strong>
No ads
</strong>
<p class="border-bottom bdright"></p>
<strong>
No collection of personal data
</strong>
</div>
</div>
<a class="row nav-link js-scroll-trigger next" href="#utilitytoken">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
</section>
<div class="barmodel">
<div class="container p-0">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<img src="img/kit/Logo_Black.svg" style="width:100px;margin-bottom:4px;" />
</a>
<div class="modeltitle">UTILITY TOKEN</div>
<div class="right-model">
<a class="btnread-inverted nav-link js-scroll-trigger" href="https://token.d.tube/whitepaper.pdf" target="_blank">Read the whitepaper</a>
<button class="ml-3 btnbuy nav-link js-scroll-trigger countdown" href="https://ionomy.com/en/markets/btc-dtube" >Buy DTC</button>
</div>
</div>
</div>
<!-- utilitytoken -->
<section id="utilitytoken">
<h2 class="section-heading text-center"> The DTube Coin: <span class="section-subheading ">a utility token for
video</span></h2>
<div class="row middle container justify-content-md-center mt-5">
<div class="row">
<div class="col-6 card align-self-center ">
<div class="row no-gutters wow flipInY">
<div class="col-md-2">
<img src="img/Export/Illus_13.png" >
</div>
<div class="col-md-10">
<div class="card-body">
<strong>For players</strong><span class="text-muted">: hold your DTC to post, vote, comment, tag videos
and earn rewards</span>
</div>
</div>
</div>
<div class="row no-gutters wow flipInY" data-wow-delay="2s">
<div class="col-md-2">
<img src="img/Export/Illus_15.png">
</div>
<div class="col-md-10">
<div class="card-body">
<strong>For fans</strong><span class="text-muted"> (live): Support your favorite creators and curators
with the “donate DTC” feature</span>
</div>
</div>
</div>
</div>
<div class="col-6 card align-self-center">
<div class="row no-gutters wow flipInY" data-wow-delay="1s">
<div class="col-md-2">
<img src="img/Export/Illus_14.png">
</div>
<div class="col-md-10">
<div class="card-body">
<strong>For advertisers</strong><span class="text-muted"> (live): Burn DTC to promote videos on the
platform</span>
</div>
</div>
</div>
<div class="row no-gutters wow flipInY" data-wow-delay="3s">
<div class="col-md-2">
<img src="img/Export/Illus_16.png">
</div>
<div class="col-md-10">
<div class="card-body">
<strong>For viewers</strong><span class="text-muted"> (2020): Spend your DTC to access premium
content</span>
</div>
</div>
</div>
</div>
<a class="nav-link js-scroll-trigger next" href="#distribution">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
</div>
</section>
<!-- distribution -->
<section id="distribution" class="bg-light">
<div class="row middle container small-screen">
<div class="row">
<h2 class="section-heading text-center">DTube Coin distribution: <span class="section-subheading ">how it
works</span></h2>
</div>
<div class=" col-md-auto p-5 wow fadeInUp" data-wow-delay="0s" data-wow-duration="2s" data-wow-delay="0s" data-wow-duration="2s"> <img height="auto" width="auto" src="img/Export/Illus_10.png">
<div class="border-top"><strong>The DTube Chain distributes Voting Power (VP) to every DTuber at a rate of +1
per DTC per hour.</strong></div>
</div>
<div class=" col-md-auto p-5 wow fadeInUp" data-wow-delay="0s" data-wow-duration="2s" data-wow-delay="0s" data-wow-duration="2s"> <img height="auto" width="auto" src="img/Export/Illus_11.png">
<div class="border-top"> <strong>DTubers spend their VP each time they post, vote, comment or tag a
content.</strong></div>
</div>
<div class=" col-md-auto p-5 wow fadeInUp" data-wow-delay="0s" data-wow-duration="2s" data-wow-delay="0s" data-wow-duration="2s"> <img height="auto" width="auto" src="img/Export/Illus_12.png">
<div class="border-top"> <strong>In real time, the blockchain algorithm generates and distributes new DTC to
users to reward them according to content popularity and freshness.</strong></div>
</div>
<div></div>
<a class="nav-link js-scroll-trigger next" href="#utilitytoken">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
<div class="row middle container large-screen">
<h2 class="container section-heading text-center">DTube Coin distribution: <span class="section-subheading ">how
it
works</span></h2>
<div class="col-6 col-md-4 p-5 wow fadeInUp" data-wow-delay="0s" data-wow-duration="2s" data-wow-delay="0s" data-wow-duration="2s"> <img height="auto" width="auto" src="img/Export/Illus_10.png">
<div class="border-top"><strong>The DTube Chain distributes Voting Power (VP) to every DTuber at a rate of +1
per DTC per hour.</strong></div>
</div>
<div class="col-6 col-md-4 p-5 wow fadeInUp" data-wow-delay="2s" data-wow-duration="2s" data-wow-delay="0s" data-wow-duration="2s"> <img height="auto" width="auto" src="img/Export/Illus_11.png">
<div class="border-top"> <strong>DTubers spend their VP each time they post, vote, comment or tag a
content.</strong></div>
</div>
<div class="col-6 col-md-4 p-5 wow fadeInUp" data-wow-delay="4s" data-wow-duration="2s" data-wow-delay="0s" data-wow-duration="2s"> <img height="auto" width="auto" src="img/Export/Illus_12.png">
<div class="border-top"> <strong>In real time, the blockchain algorithm generates and distributes new DTC to
users to reward them according to content popularity and freshness.</strong></div>
</div>
<div></div>
<a class="nav-link js-scroll-trigger next" href="#tokenlaunch">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
</section>
<!-- economiccycle -->
<!-- <section id="economiccycle" class="bg-light">
<h2 class="section-heading text-center"> DTC economic cycle</h2>
<div class="row middle container justify-content-md-center">
<div class="col-md-auto col-lg-10 mt-5 card mb-3 align-self-center">
<div class="row no-gutters mb-3 mt-5">
<img src="img/Export/Illus_17.png" class="card-img" alt="...">
</div>
<a class="nav-link js-scroll-trigger next" href="#tokenlaunch">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
</div>
</section> -->
<div class="barmodel">
<div class="container p-0">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<img src="img/kit/Logo_Black.svg" style="width:100px;margin-bottom:4px;" />
</a>
<div class="modeltitle">TOKEN GENERATION</div>
<div class="right-model">
<a class="btnread-inverted nav-link js-scroll-trigger" href="https://token.d.tube/whitepaper.pdf" target="_blank">Read the whitepaper</a>
<button class="ml-3 btnbuy nav-link js-scroll-trigger countdown" href="https://ionomy.com/en/markets/btc-dtube" >Buy DTC</button>
</div>
</div>
</div>
<!-- Token launch -->
<section id="tokenlaunch">
<div class="row middle container">
<div class="row justify-content-md-center">
<div class="col-lg-6 ">
<h2 class="section-heading text-uppercase">Token launch: </h2>
<h3 class="section-subheading text-muted mb-3"> DTC airdrop </h3>
On 1st October 2020, the DTube Chain was finally started with an initial amount of
<div class="text-center">
<div class="tokens">4,000,000 DTUBE Coins</div>
</div>
<div>
that were distributed to the DTube Community, to the DTube team and to investors.
</div>
</div>
<div class="col-lg-4 col-md-12 mt-5">
<img src="img/Export/Illus_25.png">
</div>
</div>
<a class="nav-link js-scroll-trigger next" href="#tokensale">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
</section>
<!-- tokensale -->
<section id="tokensale" class="bg-light">
<div class="row middle container">
<div class="row justify-content-md-center">
<div class="col-lg-6 ">
<h2 class="section-heading text-uppercase">Token sale: </h2>
<h3 class="section-subheading text-muted mb-3"> DTC Initial Exchange Offering (IEO)</h3>
<div>
DTube will conduct an Initial Exchange Offering (IEO) to fund its future development.
DTube has established as the #1 DApp in social medias, collected funds will allow us to promote the concept
to mass market adoption: sponsoring creators and influencers,
DTube is partnering with a professional cryptocurrency exchange with all the resources to operate a legally
compliant token sale on markets.
</div>
<div class="redsquare text-center">
<div class="big text-red">1,000,000 DTC </div>
<div class="mb-3">tokens in total will be sold in one round only.</div>
</div>
</div>
<div class="col-lg-4 col-md-auto mt-5 text-center">
<img class="mb-4 wow pulse" data-wow-iteration="infinite" src="img/Export/Illus_26.png">
<a class="btnbuy big btnbuy big mt-5 mb-5" href="https://ionomy.com/en/markets/btc-dtube">Buy DTC now</a>
<img class="mt-4 wow pulse" data-wow-iteration="infinite" src="img/Export/Illus_27.png">
<div class="mt-2">Sale starts on 20th September.</div>
</div>
</div>
<a class="nav-link js-scroll-trigger next" href="#roadmap">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
</section>
<!-- roadmap -->
<section id="roadmap">
<h2 class="section-heading text-center">Roadmap</h2>
<div class="container columns justify-content-md-center">
<div>
<ul class="timeline col-lg-6 mt-5 container justify-content-md-center">
<li class="event" data-date="August, 2017">
<p>DTube launch on the Steem blockchain</p>
</li>
<li class="event" data-date="Q1, 2018">
<p>1 upload/minute & 4 Million MUV
#1 topic on “Hacker News”
</p>
<p>
2 Million Steem seed funding from Steem cofounder, Ned Scott
</p>
</li>
<li class="event" data-date="Q3-Q4, 2018">
<p>Research & Development for Avalon Blockchain (low layer technology for the DTube Chain)</p>
</li>
<li class="event" data-date="Q1, 2019">
<p>Launch private Testnet</p>
</li>
<li class="event" data-date="End Q2, 2019">
<p>Launch public Testnet (available on d.tube)</p>
</li>
<li class="event" data-date="20th Sept 2019">
<p>DTC Token Sale: Round 1
</p>
</li>
<li class="event" data-date="End of Q4">
<p>DTC starts trading on markets</p>
</li>
<li class="event" data-date="Q1-Q2 2020">
<p>Release of more features around the burning mechanism</p>
</li>
</ul>
</div>
</div>
<div class="ontainer justify-content-md-center">
<a class="nav-link js-scroll-trigger next" href="#joincommunity">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
</section>
<div class="barmodel">
<div class="container p-0">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<img src="img/kit/Logo_Black.svg" style="width:100px;margin-bottom:4px;" />
</a>
<div class="modeltitle">PRESS & CONTACT</div>
<div class="right-model">
<a class="btnread-inverted nav-link js-scroll-trigger" href="https://token.d.tube/whitepaper.pdf" target="_blank">Read the whitepaper</a>
<button class="ml-3 btnbuy nav-link js-scroll-trigger countdown" href="https://ionomy.com/en/markets/btc-dtube" >Buy DTC</button>
</div>
</div>
</div>
<!-- latestnews -->
<!-- <section id="latestnews" class="bg-light">
<h2 class="section-heading text-center">Our latest news</h2>
<div class="container columns justify-content-md-center">
<div>
<ul class="timeline news mt-5 row justify-content-md-center" id="steemit-widgets-blog">
</ul>
<div class="text-center">
<a href="https://steemit.com/@dtube" class="btn btn-read" target="_blank">More on Steemit.com</a>
</div>
</div>
<a class="nav-link js-scroll-trigger next" href="#joincommunity">
<div class="arrow a"> </div>
<div class="arrow b"> </div>
<div class="arrow c"> </div>
</a>
</div>
</section> -->
<!-- joincommunity -->
<section id="joincommunity">
<div class="row middle container ">