-
Notifications
You must be signed in to change notification settings - Fork 0
/
AlbumList.htm
1258 lines (1065 loc) · 46.9 KB
/
AlbumList.htm
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>
<link href="albumListStyle.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
<title>Album List</title>
<base target="_blank"/>
</head>
<body>
<div id="nav-bar">
<p> JYPETWICE </p>
<ul>
<li><a href="Home.htm" target="_self">Home</a></li>
<li><a href="MeetTheMembers.html" target="_self">Meet The Members</a></li>
<li><a href="" target="_self">Album List</a></li>
<li><a href="Gallery.htm" target="_self">Gallery</a></li>
</ul>
</div>
<div class="dropdown">
<div class="dropdown-content">
<ul>
<li><a href="#theStoryBegins" target="_self">The Story Begins</a></li>
<li><a href="#pagetwo" target="_self">PAGE TWO</a></li>
<li><a href="#twicecoaster1" target="_self">Twicecoaster: Lane 1</a></li>
<li><a href="#twicecoaster2" target="_self">Twicecoaster: Lane 2</a></li>
<li><a href="#signal" target="_self">SIGNAL</a></li>
<li><a href="#hstwice" target="_self">#TWICE</a></li>
<li><a href="#twicetagram" target="_self">Twicetagram</a></li>
<li><a href="#merryandhappy" target="_self">Merry & Happy</a></li>
<li><a href="#whatislove" target="_self">What is Love?</a></li>
<li><a href="#summernights" target="_self">Summer Nights</a></li>
<li><a href="#bdz" target="_self">BDZ</a></li>
<li><a href="#yesoryes" target="_self">YES or YES</a></li>
<li><a href="#theyearofyes" target="_self">The Year of 'Yes'</a></li>
<li><a href="#bdzre" target="_self">BDZ -Repackage-</a></li>
<li><a href="#fancyyou" target="_self">FANCY YOU</a></li>
<li><a href="#feelspecial" target="_self">Feel Special</a></li>
</ul>
</div>
<button class="dropbtn"> Jump to... </button>
</div>
<div section id="albums">
<div class="album" id="theStoryBegins">
<img src="./albums/thestorybegins.png"/>
<div class = "text" id="theStoryBegins">
<p class="heading">The Story Begins</p>
<p> October 20, 2015</p>
<p> Track List:</p>
<ul>
<li><a href="">Like OOH-AHH</a></li>
<li><a href="">Do it again</a></li>
<li><a href="">Going Crazy</a></li>
<li><a href="">Truth</a></li>
<li><a href="">Candy Boy</a></li>
<li><a href="">Like a Fool</a></li>
</ul>
<p>"The Story Begins" serves as TWICE's first mini album and the group's debut. Although reception was
mostly positive, there was criticism directed towards the M/V's confused concept and a general lack of theme
for the album.</p>
<p class="saleslabel tabellabel">Sales Details</p>
<table class="sales">
<col width="5%">
<col width="5%">
<tr>
<th>Country</th>
<th>Sales</th>
</tr>
<tr>
<td>Korea</td>
<td>70,647 copies (April 2016)</td>
</tr>
<tr>
<td>Japan</td>
<td>12,141 copies (April 2016)</td>
</tr>
</table>
<p class="chartinglabel tabellabel">Charting Details</p>
<table class="charts">
<col width="5%">
<col width="5%">
<tr>
<th>Chart (2015-2019)</th>
<th>Peak position</th>
</tr>
<tr>
<td>Japanese Albums (<a href="https://en.wikipedia.org/wiki/Oricon">Oricon</a>)</td>
<td>43</td>
</tr>
<tr>
<td>South Korean Albums (<a href="https://en.wikipedia.org/wiki/Gaon_Album_Chart">Gaon</a>) </td>
<td>3</td>
</tr>
<tr>
<td>US World Albums (<a href="https://en.wikipedia.org/wiki/Billboard_charts">Billboard</a>)</td>
<td>15</td>
</tr>
</table>
</div>
</div>
<div class="album" id="pagetwo">
<img src="./albums/pagetwo.jpg"/>
<div class="text">
<p class="heading">PAGE TWO</p>
<p> April 25, 2016</p>
<p> Track List:</p>
<ul>
<li><a href="">CHEER UP</a></li>
<li><a href="">Precious Love</a></li>
<li><a href="">Touchdown</a></li>
<li><a href="">Tuk Tok</a></li>
<li><a href="">Woohoo</a></li>
<li><a href="">My Headphones on</a></li>
<li><a href="">I'm gonna be a star (CD ver ONLY)</a></li>
</ul>
<p>"PAGE TWO" is TWICE's second extended play. The album was praised for its songs' "high-spirited and cheerful" energy and being "generally refreshing
and witty.""Touchdown" in particular was praised for its powerful sound and energetic feeling. Critique for the album was mainly directed at a lack of diversity in its sounds. </p>
<p> Fun Fact #1: CHEER UP won the "Song of the Year" daesang at the 2016 MAMA Awards</p>
<p>Fun Fact #2: CHEER UP is TWICE's longest charting song on MelOn's Top 100 (68 weeks)</p>
<p class="saleslabel tabellabel">Sales Details</p>
<table class="sales">
<col width="5%">
<col width="5%">
<tr>
<th>Country</th>
<th>Sales</th>
</tr>
<tr>
<td>All</td>
<td>150,000+ (September 2016)</td>
</tr>
</table>
<p class="chartinglabel tabellabel">Charting Details</p>
<table class="charts">
<col width="5%">
<col width="5%">
<tr>
<th>Chart (2015-2019)</th>
<th>Peak position</th>
</tr>
<tr>
<td>Japanese Albums (<a href="https://en.wikipedia.org/wiki/Oricon">Oricon</a>)</td>
<td>16</td>
</tr>
<tr>
<td>South Korean Albums (<a href="https://en.wikipedia.org/wiki/Gaon_Album_Chart">Gaon</a>) </td>
<td>2</td>
</tr>
<tr>
<td>US World Albums (<a href="https://en.wikipedia.org/wiki/Billboard_charts">Billboard</a>)</td>
<td>6</td>
</tr>
</table>
</div>
</div>
<div class="album" id="twicecoaster1">
<img src="./albums/twicecoaster1.png"/>
<div class="text">
<p class="heading">Twicecoaster: Lane 1</p>
<p> October 24, 2016</p>
<p> Track List:</p>
<ul>
<li><a href="">TT</a></li>
<li><a href="">1 to 10</a></li>
<li><a href="">Ponytail</a></li>
<li><a href="">Jelly Jelly</a></li>
<li><a href="">Pit-A-Pat</a></li>
<li><a href="">Next Page</a></li>
<li><a href="">One in a Million</a></li>
</ul>
<p>"Twicecoaster: Lane 1" is TWICE's third extended play. The EP shot TWICE into international fame and cemented them
as the top selling girl group of 2016. TWICE won their first music show award with "TT" and performed on Show Champion for
the first time since their debut.</p>
<p> Fun Fact #1: "TT" is TWICE's most viewed music video. As of September 2019, it has over 477 million views.</p>
<p> Fun Fact #2: The album reportedly sold more than 165,000 physical copies on Gaon chart within a week, beating PAGE TWO's five-month
sales record in only 7 days.</p>
<p>Fun Fact #3: "One in a Million" eventually became TWICE's catchphrase.</p>
<p class="saleslabel tabellabel">Sales Details</p>
<table class="sales">
<col width="5%">
<col width="5%">
<tr>
<th>Country</th>
<th>Sales</th>
</tr>
<tr>
<td>All</td>
<td>350,000+ (December 2016)</td>
</tr>
</table>
<p class="chartinglabel tabellabel">Charting Details</p>
<table class="charts">
<col width="5%">
<col width="5%">
<tr>
<th>Chart (2015-2019)</th>
<th>Peak position</th>
</tr>
<tr>
<td>Japanese Albums (<a href="https://en.wikipedia.org/wiki/Oricon">Oricon</a>)</td>
<td>10</td>
</tr>
<tr>
<td>South Korean Albums (<a href="https://en.wikipedia.org/wiki/Gaon_Album_Chart">Gaon</a>) </td>
<td>1</td>
</tr>
<tr>
<td>US World Albums (<a href="https://en.wikipedia.org/wiki/Billboard_charts">Billboard</a>)</td>
<td>3</td>
</tr>
</table>
</div>
</div>
<div class="album" id="twicecoaster2">
<img src="./albums/twicecoaster2.jpg"/>
<div class="text">
<p class="heading">Twicecoaster: Lane 2</p>
<p> February 20, 2017</p>
<p> Track List:</p>
<ul>
<li><a href="">Knock Knock</a></li>
<li><a href="">Ice Cream (Melting)</a></li>
<li><a href="">TT</a></li>
<li><a href="">1 to 10</a></li>
<li><a href="">Ponytail</a></li>
<li><a href="">Jelly Jelly</a></li>
<li><a href="">Pit-A-Pat</a></li>
<li><a href="">Next Page</a></li>
<li><a href="">One in a Million</a></li>
</ul>
<p>"Twicecoaster: Lane 2" is TWICE's first "special album" and a reissue of Twicecoaster: Lane 1 with new title track "Knock Knock."</p>
<p class="saleslabel tabellabel">Sales Details</p>
<table class="sales">
<col width="5%">
<col width="5%">
<tr>
<th>Country</th>
<th>Sales</th>
</tr>
<tr>
<td>All</td>
<td>266,000+ (February 2017)</td>
</tr>
</table>
<p class="chartinglabel tabellabel">Charting Details</p>
<table class="charts">
<col width="5%">
<col width="5%">
<tr>
<th>Chart (2015-2019)</th>
<th>Peak position</th>
</tr>
<tr>
<td>Japanese Albums (<a href="https://en.wikipedia.org/wiki/Oricon">Oricon</a>)</td>
<td>N/A</td>
</tr>
<tr>
<td>South Korean Albums (<a href="https://en.wikipedia.org/wiki/Gaon_Album_Chart">Gaon</a>) </td>
<td>1</td>
</tr>
<tr>
<td>US World Albums (<a href="https://en.wikipedia.org/wiki/Billboard_charts">Billboard</a>)</td>
<td>4</td>
</tr>
</table>
</div>
</div>
<div class="album" id="signal">
<img src="./albums/signal.jpg"/>
<div class="text">
<p class="heading">Signal</p>
<p> May 15, 2017</p>
<p> Track List:</p>
<ul>
<li><a href="">SIGNAL</a></li>
<li><a href="">THREE TIMES A DAY</a></li>
<li><a href="">ONLY YOU</a></li>
<li><a href="">HOLD ME TIGHT</a></li>
<li><a href="">EYES EYES EYES</a></li>
<li><a href="">SOMEONE LIKE ME</a></li>
</ul>
<p>"Signal" is TWICE's fourth extended play and was the first EP that TWICE actively promoted on variety shows. Its signature dance move became iconic
in the kpop industry and is still widely prevalent in the industry today. This EP is also the first one to have lyrics written by TWICE members with
Jihyo and Chaeyoung writing the lyrics for "EYES EYES EYES."</p>
<p> Fun Fact: "SIGNAL" won the "Song of the Year" daesang award at the 2017 MAMA show.</p>
<p class="saleslabel tabellabel">Sales Details</p>
<table class="sales">
<col width="5%">
<col width="5%">
<tr>
<th>Country</th>
<th>Sales</th>
</tr>
<tr>
<td>All</td>
<td>248,000+ (May 2017)</td>
</tr>
</table>
<p class="chartinglabel tabellabel">Charting Details</p>
<table class="charts">
<col width="5%">
<col width="5%">
<tr>
<th>Chart (2015-2019)</th>
<th>Peak position</th>
</tr>
<tr>
<td>Japanese Albums (<a href="https://en.wikipedia.org/wiki/Oricon">Oricon</a>)</td>
<td>11</td>
</tr>
<tr>
<td>South Korean Albums (<a href="https://en.wikipedia.org/wiki/Gaon_Album_Chart">Gaon</a>) </td>
<td>1</td>
</tr>
<tr>
<td>US World Albums (<a href="https://en.wikipedia.org/wiki/Billboard_charts">Billboard</a>)</td>
<td>3</td>
</tr>
<tr>
<td>US <a href="https://en.wikipedia.org/wiki/Top_Heatseekers">Heatseekers Albums </a> (<a href="https://en.wikipedia.org/wiki/Billboard_charts">Billboard</a>)</td>
<td>11</td>
</tr>
</table>
</div>
</div>
<div class="album" id="hstwice">
<img src="./albums/hsTWICE.png"/>
<div class="text">
<p class="heading">#TWICE</p>
<p> June 28, 2017</p>
<p> Track List:</p>
<ul>
<li><a href="">Like Ooh-Ahh (Japanese ver.)</a></li>
<li><a href="">Cheer Up (Japanese ver.)</a></li>
<li><a href="">TT (Japanese ver.)</a></li>
<li><a href="">Knock Knock (Japanese ver.)</a></li>
<li><a href="">Signal (Japanese ver.)</a></li>
<li><a href="">Like Ooh-Ahh</a></li>
<li><a href="">Cheer Up</a></li>
<li><a href="">TT</a></li>
<li><a href="">Knock Knock</a></li>
<li><a href="">Signal</a></li>
</ul>
<p>"#TWICE" is TWICE's first Japanese album and consits of both the Japanese and Korean versions of TWICE's title tracks.
#TWICE affirmed TWICE's popularity in Japan and was the spearhead of the TWICE-led hallyu wave into Japanese culture.</p>
<p> Fun Fact: "#TWICE" sold over 260,000 copies, which earned it a Platinum certification by the Recording Industry Association of Japan (RIAJ).</p>
<p class="saleslabel tabellabel">Sales Details</p>
<table class="sales">
<col width="5%">
<col width="5%">
<tr>
<th>Country</th>
<th>Sales</th>
</tr>
<tr>
<td>All</td>
<td>326,000+ (February 2018)</td>
</tr>
</table>
<p class="chartinglabel tabellabel">Charting Details</p>
<table class="charts">
<col width="5%">
<col width="5%">
<tr>
<th>Chart (2015-2019)</th>
<th>Peak position</th>
</tr>
<tr>
<td>Japanese Albums (<a href="https://en.wikipedia.org/wiki/Oricon">Oricon</a>)</td>
<td>2</td>
</tr>
<tr>
<td>South Korean Albums (<a href="https://en.wikipedia.org/wiki/Gaon_Album_Chart">Gaon</a>) </td>
<td>N/A</td>
</tr>
<tr>
<td>US World Albums (<a href="https://en.wikipedia.org/wiki/Billboard_charts">Billboard</a>)</td>
<td>N/A</td>
</tr>
<tr>
<td>Japan Hot Albums (<a href="https://en.wikipedia.org/wiki/Billboard_Japan#Billboard_Japan_charts">Billboard</a>)</td>
<td>11</td>
</tr>
<tr>
<td>Japanese Digital Albums (<a href="https://en.wikipedia.org/wiki/Oricon">Oricon</a>)</td>
<td>2</td>
</tr>
<tr>
<td>New Zealand Heetseekers Albums (<a href="https://en.wikipedia.org/wiki/Recorded_Music_NZ">RMNZ</a>)</td>
<td>2</td>
</tr>
</table>
</div>
</div>
<div class="album" id="twicetagram">
<img src="./albums/likeya.jpg"/>
<div class="text">
<p class="heading">Twicetagram</p>
<p> October 30, 2017</p>
<p> Track List:</p>
<ul>
<li><a href="">LIKEY</a></li>
<li><a href="">TURTLE</a></li>
<li><a href="">MISSING U</a></li>
<li><a href="">WOW</a></li>
<li><a href="">FFW</a></li>
<li><a href="">DING DONG</a></li>
<li><a href="">24/7</a></li>
<li><a href="">LOOK AT ME</a></li>
<li><a href="">ROLLIN'</a></li>
<li><a href="">LOVE LINE</a></li>
<li><a href="">DON'T GIVE UP</a></li>
<li><a href="">YOU IN MY HEART</a></li>
<li><a href="">JAJAYO GOOD NIGHT</a></li>
</ul>
<p>"Twicetagram" is TWICE's first studio album. Reception was extremely positive; the album was described as "an entire collection of incredible bubblegum hits."
"Likey" was an absolute breakthrough and debuted atop both Billboard's World Albums and World Digital Song Sales, making TWICE the first female kpop group
to lead on both charts.</p>
<p class="saleslabel tabellabel">Sales Details</p>
<table class="sales">
<col width="5%">
<col width="5%">
<tr>
<th>Country</th>
<th>Sales</th>
</tr>
<tr>
<td>All</td>
<td>320,000+ (December 2017)</td>
</tr>
</table>
<p class="chartinglabel tabellabel">Charting Details</p>
<table class="charts">
<col width="5%">
<col width="5%">
<tr>
<th>Chart (2015-2019)</th>
<th>Peak position</th>
</tr>
<tr>
<td>Japanese Albums (<a href="https://en.wikipedia.org/wiki/Oricon">Oricon</a>)</td>
<td>7</td>
</tr>
<tr>
<td>South Korean Albums (<a href="https://en.wikipedia.org/wiki/Gaon_Album_Chart">Gaon</a>) </td>
<td>1</td>
</tr>
<tr>
<td>US World Albums (<a href="https://en.wikipedia.org/wiki/Billboard_charts">Billboard</a>)</td>
<td>1</td>
</tr>
<tr>
<td>Japan Hot Albums (<a href="https://en.wikipedia.org/wiki/Billboard_Japan#Billboard_Japan_charts">Billboard</a>)</td>
<td>12</td>
</tr>
<tr>
<td>Japanese Digital Albums (<a href="https://en.wikipedia.org/wiki/Oricon">Oricon</a>)</td>
<td>3</td>
</tr>
<tr>
<td>French Download Albums (<a href="https://en.wikipedia.org/wiki/Syndicat_National_de_l%27%C3%89dition_Phonographique">SNEP</a>)</td>
<td>195</td>
</tr>
<tr>
<td>US <a href="https://en.wikipedia.org/wiki/Top_Heatseekers">Heatseekers Albums </a> (<a href="https://en.wikipedia.org/wiki/Billboard_charts">Billboard</a>)</td>
<td>10</td>
</tr>
</table>
</div>
</div>
<div class="album" id="merryandhappy">
<img src="./albums/merryandhappya.jpg"/>
<div class="text">
<p class="heading">Merry & Happy</p>
<p>December 11, 2017</p>
<p> Track List:</p>
<ul>
<li><a href="">Heart Shaker</a></li>
<li><a href="">Merry & Happy</a></li>
<li><a href="">LIKEY</a></li>
<li><a href="">TURTLE</a></li>
<li><a href="">MISSING U</a></li>
<li><a href="">WOW</a></li>
<li><a href="">FFW</a></li>
<li><a href="">DING DONG</a></li>
<li><a href="">24/7</a></li>
<li><a href="">LOOK AT ME</a></li>
<li><a href="">ROLLIN'</a></li>
<li><a href="">LOVE LINE</a></li>
<li><a href="">DON'T GIVE UP</a></li>
<li><a href="">YOU IN MY HEART</a></li>
<li><a href="">JAJAYO GOOD NIGHT</a></li>
</ul>
<p>Merry & Happy is TWICE's Christmas-themed reissue of their first studio album "twicetagram" with new title track "Heart Shaker." Despite
being only intended as a reissued title track, "Heart Shaker" became one of TWICE's most popular tracks with its bubbly and upbeat rhythms.</p>
<p class="saleslabel tabellabel">Sales Details</p>
<table class="sales">
<col width="5%">
<col width="5%">
<tr>
<th>Country</th>
<th>Sales</th>
</tr>
<tr>
<td>All</td>
<td>200,000+ (July 2018)</td>
</tr>
</table>
<p class="chartinglabel tabellabel">Charting Details</p>
<table class="charts">
<col width="5%">
<col width="5%">
<tr>
<th>Chart (2015-2019)</th>
<th>Peak position</th>
</tr>
<tr>
<td>Japanese Albums (<a href="https://en.wikipedia.org/wiki/Oricon">Oricon</a>)</td>
<td>N/A</td>
</tr>
<tr>
<td>South Korean Albums (<a href="https://en.wikipedia.org/wiki/Gaon_Album_Chart">Gaon</a>) </td>
<td>1</td>
</tr>
<tr>
<td>US World Albums (<a href="https://en.wikipedia.org/wiki/Billboard_charts">Billboard</a>)</td>
<td>N/A</td>
</tr>
<tr>
<td>Japan Hot Albums (<a href="https://en.wikipedia.org/wiki/Billboard_Japan#Billboard_Japan_charts">Billboard</a>)</td>
<td>38</td>
</tr>
<tr>
<td>Japanese Digital Albums (<a href="https://en.wikipedia.org/wiki/Oricon">Oricon</a>)</td>
<td>15</td>
</tr>
</table>
</div>
</div>
<div class="album" id="whatislove">
<img src="./albums/whatislovea.jpg"/>
<div class="text">
<p class="heading">What is Love?</p>
<p> April 9, 2018</p>
<p> Track List:</p>
<ul>
<li><a href="">What is Love?</a></li>
<li><a href="">SWEET TALKER</a></li>
<li><a href="">HO!</a></li>
<li><a href="">DEJAVU</a></li>
<li><a href="">SAY YES</a></li>
</ul>
<p>"What is Love?" is TWICE's fifth extended play. Members Jeongyeon, Chaeyoung, and Jihyo participated in writing lyrics for certain songs in the EP.</p>
<p>Fun Fact #1: Title Track "What is Love?" won the "Song of the Year" daesang at the 2018 MAMA Awards, marking the third year in a row TWICE has won the award.</p>
<p>Fun Fact #2: The album won the Album Bonsang at the 33rd Golden Disc Awards (2019).</p>
<p class="saleslabel tabellabel">Sales Details</p>
<table class="sales">
<col width="5%">
<col width="5%">
<tr>
<th>Country</th>
<th>Sales</th>
</tr>
<tr>
<td>All</td>
<td>471,000+ (2019)</td>
</tr>
</table>
<p class="chartinglabel tabellabel">Charting Details</p>
<table class="charts">
<col width="5%">
<col width="5%">
<tr>
<th>Chart (2015-2019)</th>
<th>Peak position</th>
</tr>
<tr>
<td>Japanese Albums (<a href="https://en.wikipedia.org/wiki/Oricon">Oricon</a>)</td>
<td>2</td>
</tr>
<tr>
<td>South Korean Albums (<a href="https://en.wikipedia.org/wiki/Gaon_Album_Chart">Gaon</a>) </td>
<td>2</td>
</tr>
<tr>
<td>US World Albums (<a href="https://en.wikipedia.org/wiki/Billboard_charts">Billboard</a>)</td>
<td>3</td>
</tr>
<tr>
<td>Japan Hot Albums (<a href="https://en.wikipedia.org/wiki/Billboard_Japan#Billboard_Japan_charts">Billboard</a>)</td>
<td>10</td>
</tr>
<tr>
<td>Japanese Digital Albums (<a href="https://en.wikipedia.org/wiki/Oricon">Oricon</a>)</td>
<td>3</td>
</tr>
<tr>
<td>US <a href="https://en.wikipedia.org/wiki/Top_Heatseekers">Heatseekers Albums </a> (<a href="https://en.wikipedia.org/wiki/Billboard_charts">Billboard</a>)</td>
<td>13</td>
</tr>
<tr>
<td>US <a href="https://en.wikipedia.org/wiki/Independent_Albums">Independent Albums</a> (<a href="https://en.wikipedia.org/wiki/Billboard_charts">Billboard</a>)</td>
<td>13</td>
</tr>
</table>
</div>
</div>
<div class="album" id="summernights">
<img src="./albums/summernights.png"/>
<div class="text">
<p class="heading">Summer Nights</p>
<p> July 9, 2018</p>
<p> Track List:</p>
<ul>
<li><a href="">Dance The Night Away</a></li>
<li><a href="">CHILLAX</a></li>
<li><a href="">Shot thru the heart</a></li>
<li><a href="">What is Love?</a></li>
<li><a href="">SWEET TALKER</a></li>
<li><a href="">HO!</a></li>
<li><a href="">DEJAVU</a></li>
<li><a href="">SAY YES</a></li>
<li><a href="">STUCK</a></li>
</ul>
<p>"Summer Nights" is the expanded reissue of "What is Love?" with new title track "Dance The Night Away." Japanese members Momo,
Sana, and Mina participated in writing lyrics for the side track "Shot Thru the Heart."</p>
<p>Fun Fact #1: "Dance the Night Away" is TWICE's second longest charter on MelOn's Top 100 (57 weeks) and almost always resurfaces during summertime every year.</p>
<p>Fun Fact #2: "Dance the Night Away" has an official remix (for concert performances) that can be found <a href="https://www.youtube.com/watch?v=Qme9GDp0l2o">here</a>.</p>
<p class="saleslabel tabellabel">Sales Details</p>
<table class="sales">
<col width="5%">
<col width="5%">
<tr>
<th>Country</th>
<th>Sales</th>
</tr>
<tr>
<td>All</td>
<td>426,000+ (2019)</td>
</tr>
</table>
<p class="chartinglabel tabellabel">Charting Details</p>
<table class="charts">
<col width="5%">
<col width="5%">
<tr>
<th>Chart (2015-2019)</th>
<th>Peak position</th>
</tr>
<tr>
<td>Japanese Albums (<a href="https://en.wikipedia.org/wiki/Oricon">Oricon</a>)</td>
<td>4</td>
</tr>
<tr>
<td>South Korean Albums (<a href="https://en.wikipedia.org/wiki/Gaon_Album_Chart">Gaon</a>) </td>
<td>1</td>
</tr>
<tr>
<td>US World Albums (<a href="https://en.wikipedia.org/wiki/Billboard_charts">Billboard</a>)</td>
<td>4</td>
</tr>
<tr>
<td>Japan Hot Albums (<a href="https://en.wikipedia.org/wiki/Billboard_Japan#Billboard_Japan_charts">Billboard</a>)</td>
<td>14</td>
</tr>
<tr>
<td>Japanese Digital Albums (<a href="https://en.wikipedia.org/wiki/Oricon">Oricon</a>)</td>
<td>6</td>
</tr>
</table>
</div>
</div>
<div class="album" id="bdz">
<img src="./albums/bdz.jpg"/>
<div class="text">
<p class="heading">BDZ</p>
<p> September 12, 2018</p>
<p> Track List:</p>
<ul>
<li><a href="">BDZ</a></li>
<li><a href="">One More Time</a></li>
<li><a href="">Candy Pop</a></li>
<li><a href="">L.O.V.E</a></li>
<li><a href="">Wishing</a></li>
<li><a href="">Say it again</a></li>
<li><a href="">Wake Me Up</a></li>
<li><a href="">BRAND NEW GIRL</a></li>
<li><a href="">Be as ONE</a></li>
<li><a href="">I WANT YOU BACK</a></li>
</ul>
<p>"BDZ" is TWICE's second studio album and first Japanese album. The title (short for "bulldozer") symbolizes the members'
wish to "be tough and live strong."</p>
<p>Fun Fact #1: "BDZ" is TWICE's fifth consecutive platinum certification (award for albums selling 250,000+ copies).</p>
<p>Fun Fact #2: The album won in the "Best 3 Albums (Asia)" category at the 33rd Japan Gold Disc Award.</p>
<br/>
<p class="saleslabel tabellabel">Sales Details</p>
<table class="sales">
<col width="5%">
<col width="5%">
<tr>
<th>Country</th>
<th>Sales</th>
</tr>
<tr>
<td>All</td>
<td>292,000+ (September 2018)</td>
</tr>
</table>
<p class="chartinglabel tabellabel">Charting Details</p>
<table class="charts">
<col width="5%">
<col width="5%">
<tr>
<th>Chart (2015-2019)</th>
<th>Peak position</th>
</tr>
<tr>
<td>Japanese Albums (<a href="https://en.wikipedia.org/wiki/Oricon">Oricon</a>)</td>
<td>1</td>
</tr>
<tr>
<td>South Korean Albums (<a href="https://en.wikipedia.org/wiki/Gaon_Album_Chart">Gaon</a>) </td>
<td>N/A</td>
</tr>
<tr>
<td>US World Albums (<a href="https://en.wikipedia.org/wiki/Billboard_charts">Billboard</a>)</td>
<td>n/A</td>
</tr>
<tr>
<td>Japan Hot Albums (<a href="https://en.wikipedia.org/wiki/Billboard_Japan#Billboard_Japan_charts">Billboard</a>)</td>
<td>1</td>
</tr>
<tr>
<td>Japanese Digital Albums (<a href="https://en.wikipedia.org/wiki/Oricon">Oricon</a>)</td>
<td>1</td>
</tr>
</table>
</div>
</div>
<div class="album" id="yesoryes">
<img src="./albums/yesoryes.jpg"/>
<div class="text">
<p class="heading">YES or YES</p>
<p>November 5, 2018</p>
<p> Track List:</p>
<ul>
<li><a href="">YES or YES</a></li>
<li><a href="">SAY YOU LOVE ME</a></li>
<li><a href="">LALALA</a></li>
<li><a href="">YOUNG & WILD</a></li>
<li><a href="">SUNSET</a></li>
<li><a href="">AFTERMOON</a></li>
<li><a href="">BDZ - Korean Ver.</a></li>
</ul>
<p>"YES or YES" is TWICE's sixth extended play. TWICE members participated in writing lyrics for side tracks, with
Jeongyeon writing "LALALA," Chaeyoung writing "Young & Wild," and Jihyo writing "Sunset." Title track "YES or YES" was praised
for being a bright a lively "color pop" song in the synth-pop genre.</p>
<p>Fun Fact: Up to its release, "YES or YES" was TWICE's fastest selling mini album.</p>
<p class="saleslabel tabellabel">Sales Details</p>
<table class="sales">
<col width="5%">
<col width="5%">
<tr>
<th>Country</th>
<th>Sales</th>
</tr>
<tr>
<td>All</td>
<td>508,000+ (2019)</td>
</tr>
</table>
<p class="chartinglabel tabellabel">Charting Details</p>
</table>
<p class="chartinglabel tabellabel">Charting Details</p>
<table class="charts">
<col width="5%">
<col width="5%">
<tr>
<th>Chart (2015-2019)</th>
<th>Peak position</th>
</tr>
<tr>
<td>Japanese Albums (<a href="https://en.wikipedia.org/wiki/Oricon">Oricon</a>)</td>
<td>1</td>
</tr>
<tr>
<td>South Korean Albums (<a href="https://en.wikipedia.org/wiki/Gaon_Album_Chart">Gaon</a>) </td>
<td>1</td>
</tr>
<tr>
<td>US World Albums (<a href="https://en.wikipedia.org/wiki/Billboard_charts">Billboard</a>)</td>
<td>7</td>
</tr>
<tr>
<td>Japan Hot Albums (<a href="https://en.wikipedia.org/wiki/Billboard_Japan#Billboard_Japan_charts">Billboard</a>)</td>
<td>7</td>
</tr>
<tr>
<td>Japanese Digital Albums (<a href="https://en.wikipedia.org/wiki/Oricon">Oricon</a>)</td>
<td>1</td>
</tr>
<tr>
<td>French Download Albums (<a href="https://en.wikipedia.org/wiki/Syndicat_National_de_l%27%C3%89dition_Phonographique">SNEP</a>)</td>
<td>125</td>
</tr>
<tr>
<td>US <a href="https://en.wikipedia.org/wiki/Top_Heatseekers">Heatseekers Albums </a> (<a href="https://en.wikipedia.org/wiki/Billboard_charts">Billboard</a>)</td>
<td>13</td>
</tr>
</table>
</div>
</div>
<div class="album" id="theyearofyes">
<img src="./albums/theyearofyes.jpg"/>
<div class="text">
<p class="heading">The Year of "Yes"</p>
<p>December 12, 2018</p>
<p> Track List:</p>
<ul>
<li><a href="">The Best Thing I Ever Did</a></li>
<li><a href="">Be as ONE (Korean Ver.)</a></li>
<li><a href="">YES or YES</a></li>
<li><a href="">SAY YOU LOVE ME</a></li>
<li><a href="">LALALA</a></li>
<li><a href="">YOUNG & WILD</a></li>
<li><a href="">SUNSET</a></li>
<li><a href="">AFTERMOON</a></li>
<li><a href="">BDZ - Korean Ver.</a></li>
</ul>
<p>"The Year of 'Yes'" is TWICE's reissue of "YES or YES" with new title track "The Best Thing I Ever Did (TBTIED)." In contrast to other TWICE title tracks, TBTIED
is a slower, more ballad-like song. JYPE called the reissue "a gift for ONCE (TWICE's official fandom)" and therefore did not hold any promotional activities for its release.</p>
<p class="saleslabel tabellabel">Sales Details</p>
<table class="sales">
<col width="5%">
<col width="5%">
<tr>
<th>Country</th>
<th>Sales</th>
</tr>
<tr>
<td>All</td>
<td>368,000+ (2019)</td>
</tr>
</table>
<p class="chartinglabel tabellabel">Charting Details</p>
</table>
<p class="chartinglabel tabellabel">Charting Details</p>
<table class="charts">